Project on Sequential NLP (Module 2) submitted for PGP-AIML Great Learning on 17-July-2022
• DOMAIN: : Digital content and entertainment industry
• CONTEXT: The objective of this project is to build a text classification model that analyses the customer's sentiments based on their reviews in the IMDB database. The model uses a complex deep learning model to build an embedding layer followed by a classification algorithm to analyse the sentiment of the customers
• DATA DESCRIPTION: The Dataset of 50,000 movie reviews from IMDB, labelled by sentiment (positive/negative). Reviews have been preprocessed, and each review is encoded as a sequence of word indexes (integers). For convenience, the words are indexed by their frequency in the dataset, meaning the for that has index 1 is the most frequent word. Use the first 20 words from each review to speed up training, using a max vocabulary size of 10,000. As a convention, "0" does not stand for a specific word, but instead is used to encode any unknown word
PROJECT OBJECTIVE: To Build a sequential NLP classifier which can use input text parameters to determine the customer sentiments
Steps and tasks: [ Total Score: 40 Marks]
#for text pre-processing
import re, string
import nltk
from nltk.tokenize import word_tokenize
from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
from nltk.stem import SnowballStemmer
from nltk.corpus import wordnet
from nltk.stem import WordNetLemmatizer
# Import packages
import pandas as pd, numpy as np
import tensorflow as tf
#for model-building
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LogisticRegression
from sklearn.naive_bayes import MultinomialNB
from sklearn.metrics import classification_report, f1_score, accuracy_score, confusion_matrix
from sklearn.metrics import roc_curve, auc, roc_auc_score
# Keras
from keras.layers import Dense, Embedding, LSTM, Dropout, MaxPooling1D, Conv1D
from keras.preprocessing.sequence import pad_sequences
from keras.models import Model, Sequential
from keras.preprocessing import sequence
from keras.datasets import imdb
from keras.callbacks import ModelCheckpoint, EarlyStopping
from sklearn.model_selection import train_test_split
from sklearn.metrics import classification_report
from itertools import islice
#for word embedding
import gensim
from gensim.models import Word2Vec
# Suppress warnings
import warnings; warnings.filterwarnings('ignore')
random_state = 42
np.random.seed(random_state)
tf.random.set_seed(random_state)
nltk.download('punkt')
nltk.download('averaged_perceptron_tagger')
nltk.download('wordnet')
[nltk_data] Downloading package punkt to [nltk_data] C:\Users\HP\AppData\Roaming\nltk_data... [nltk_data] Package punkt is already up-to-date! [nltk_data] Downloading package averaged_perceptron_tagger to [nltk_data] C:\Users\HP\AppData\Roaming\nltk_data... [nltk_data] Package averaged_perceptron_tagger is already up-to- [nltk_data] date! [nltk_data] Downloading package wordnet to [nltk_data] C:\Users\HP\AppData\Roaming\nltk_data... [nltk_data] Package wordnet is already up-to-date!
True
1. Import and analyse the data set. [5 Marks]
vocab_size = 10000
## Maximum length for Sentiment Analysis
maxlen_for_SA = 300
(X_train, y_train), (X_test, y_test) = imdb.load_data(num_words = vocab_size)
print('X_train shape=',X_train.shape)
print('X_test shape=',X_test.shape)
print('y_train shape=',y_train.shape)
print('y_test shape=',y_test.shape)
X_train shape= (25000,) X_test shape= (25000,) y_train shape= (25000,) y_test shape= (25000,)
len(X_test[0])
68
len(X_test[1])
260
len(X_train[0])
218
len(np.unique(np.hstack(X_train)))
9998
len(np.unique(np.hstack(X_test)))
9951
X_train[0]
[1, 14, 22, 16, 43, 530, 973, 1622, 1385, 65, 458, 4468, 66, 3941, 4, 173, 36, 256, 5, 25, 100, 43, 838, 112, 50, 670, 2, 9, 35, 480, 284, 5, 150, 4, 172, 112, 167, 2, 336, 385, 39, 4, 172, 4536, 1111, 17, 546, 38, 13, 447, 4, 192, 50, 16, 6, 147, 2025, 19, 14, 22, 4, 1920, 4613, 469, 4, 22, 71, 87, 12, 16, 43, 530, 38, 76, 15, 13, 1247, 4, 22, 17, 515, 17, 12, 16, 626, 18, 2, 5, 62, 386, 12, 8, 316, 8, 106, 5, 4, 2223, 5244, 16, 480, 66, 3785, 33, 4, 130, 12, 16, 38, 619, 5, 25, 124, 51, 36, 135, 48, 25, 1415, 33, 6, 22, 12, 215, 28, 77, 52, 5, 14, 407, 16, 82, 2, 8, 4, 107, 117, 5952, 15, 256, 4, 2, 7, 3766, 5, 723, 36, 71, 43, 530, 476, 26, 400, 317, 46, 7, 4, 2, 1029, 13, 104, 88, 4, 381, 15, 297, 98, 32, 2071, 56, 26, 141, 6, 194, 7486, 18, 4, 226, 22, 21, 134, 476, 26, 480, 5, 144, 30, 5535, 18, 51, 36, 28, 224, 92, 25, 104, 4, 226, 65, 16, 38, 1334, 88, 12, 16, 283, 5, 16, 4472, 113, 103, 32, 15, 16, 5345, 19, 178, 32]
len(X_train[0])
218
X_train_max_len = max(len(x) for x in X_train)
print("Max length of sequence in X_train: {}".format(X_train_max_len))
X_test_max_len = max(len(x) for x in X_test)
print("Max length of sequence in X_test: {}".format(X_test_max_len))
Max length of sequence in X_train: 2494 Max length of sequence in X_test: 2315
2. Perform relevant sequence padding on the data. [5 Marks]
## Maximum length for Sentiment Analysis
maxlen_for_SA = 300
pad_sequence:
This function transforms a list (of length num_samples) of sequences (lists of integers) into a 2D Numpy array of shape (num_samples, num_timesteps).
num_timesteps is either the maxlen argument if provided, or the length of the longest sequence in the list.
Sequences that are shorter than num_timesteps are padded with value until they are num_timesteps long.
Sequences longer than num_timesteps are truncated so that they fit the desired length.
The position where padding or truncation happens is determined by the arguments padding and truncating, respectively. Pre-padding or removing values from the beginning of the sequence is the default
X_train = pad_sequences(X_train, maxlen = maxlen_for_SA, padding = 'pre')
X_test = pad_sequences(X_test, maxlen = maxlen_for_SA, padding = 'pre')
X_train[0]
array([ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1, 14, 22, 16, 43, 530,
973, 1622, 1385, 65, 458, 4468, 66, 3941, 4, 173, 36,
256, 5, 25, 100, 43, 838, 112, 50, 670, 2, 9,
35, 480, 284, 5, 150, 4, 172, 112, 167, 2, 336,
385, 39, 4, 172, 4536, 1111, 17, 546, 38, 13, 447,
4, 192, 50, 16, 6, 147, 2025, 19, 14, 22, 4,
1920, 4613, 469, 4, 22, 71, 87, 12, 16, 43, 530,
38, 76, 15, 13, 1247, 4, 22, 17, 515, 17, 12,
16, 626, 18, 2, 5, 62, 386, 12, 8, 316, 8,
106, 5, 4, 2223, 5244, 16, 480, 66, 3785, 33, 4,
130, 12, 16, 38, 619, 5, 25, 124, 51, 36, 135,
48, 25, 1415, 33, 6, 22, 12, 215, 28, 77, 52,
5, 14, 407, 16, 82, 2, 8, 4, 107, 117, 5952,
15, 256, 4, 2, 7, 3766, 5, 723, 36, 71, 43,
530, 476, 26, 400, 317, 46, 7, 4, 2, 1029, 13,
104, 88, 4, 381, 15, 297, 98, 32, 2071, 56, 26,
141, 6, 194, 7486, 18, 4, 226, 22, 21, 134, 476,
26, 480, 5, 144, 30, 5535, 18, 51, 36, 28, 224,
92, 25, 104, 4, 226, 65, 16, 38, 1334, 88, 12,
16, 283, 5, 16, 4472, 113, 103, 32, 15, 16, 5345,
19, 178, 32])
len(X_train[0])
300
print('shape of X_train: ',X_train.shape)
print('shape of y_train: ',y_train.shape)
#print(f'Number of columns in training dataset: {x_train.shape[1]}')
#print(f'Number of unique words in training dataset: {len(np.unique(np.hstack(x_train)))}')
shape of X_train: (25000, 300) shape of y_train: (25000,)
3.Perform following data analysis: [5 Marks]
3.A.Print shape of features and labels
X = np.concatenate((X_train, X_test), axis = 0)
y = np.concatenate((y_train, y_test), axis = 0)
X.shape
(50000, 300)
y.shape
(50000,)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = random_state, shuffle = True)
X_train, X_valid, y_train, y_valid = train_test_split(X_train, y_train, test_size = 0.2, random_state = random_state, shuffle = True)
print('Train dataset')
print('---'*20)
print('X_train shape',X_train.shape)
print('y_train shape',y_train.shape)
print('unique words in Train data set',len(np.unique(np.hstack(X_train))))
print('---'*20)
print('Validation dataset')
print('---'*20)
print('X_valid shape',X_valid.shape)
print('y_valid shape', y_valid.shape)
print('unique words in Validation data set',len(np.unique(np.hstack(X_valid))))
print('---'*20)
print('Test dataset')
print('---'*20)
print('X_test shape', X_test.shape)
print('y_test shape', y_test.shape)
print('unique words in Test data set',len(np.unique(np.hstack(X_test))))
Train dataset ------------------------------------------------------------ X_train shape (32000, 300) y_train shape (32000,) unique words in Train data set 9999 ------------------------------------------------------------ Validation dataset ------------------------------------------------------------ X_valid shape (8000, 300) y_valid shape (8000,) unique words in Validation data set 9984 ------------------------------------------------------------ Test dataset ------------------------------------------------------------ X_test shape (10000, 300) y_test shape (10000,) unique words in Test data set 9995
print(np.unique(y_train))
[0 1]
print(np.unique(y_test))
[0 1]
print(np.unique(y_valid))
[0 1]
Comments
The target feature understanding is as follows on Sentiment
3.B.Print value of any one feature and it's label
len(X_train)
32000
import random
num = random. randint(0,len(X_train))
print(num)
10522
#num=10522
print('Feature of 10th data set',X_train[num])
Feature of 10th data set [ 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 1 2 9 6
2 801 827 5 1516 346 6 904 9 2429 1944 2 5 5553
4741 4 105 4486 11 2316 771 4 1249 9483 200 998 105 832
8 831 4117 4 118 5 1529 173 9 54 4 2470 2 9
11 1147 5 4973 32 2580 7 680 3575 977 159 129 523 6
681 7 1710 12 9 91 2 8 1741 827 8 339 25 3126
129 1972 2 2499 545 1178]
print('Label of random data set',y_train[num])
Label of random data set 1
4. Decode the feature value to get original sentence [5 Marks]
imdb_wordindex = imdb.get_word_index()
Now use the dictionary to get the original words from the encodings, for a particular sentence
index_from = 3
imdb_wordindex = {key:value + index_from for key, value in imdb_wordindex.items()}
imdb_wordindex['the']
4
inverted_word = {value: key for key, value in imdb_wordindex.items()}
[inverted_word[index] for index in X_train[num] if index > index_from]
['is', 'a', 'typical', 'tom', 'and', 'jerry', 'short', 'a', 'situation', 'is', 'designed', 'conflict', 'and', 'mayhem', 'ensues', 'the', 'characters', 'behave', 'in', 'appropriate', 'ways', 'the', 'natural', 'tensions', 'between', 'various', 'characters', 'leads', 'to', 'general', 'chaos', 'the', 'best', 'and', 'funniest', 'part', 'is', 'when', 'the', 'peace', 'is', 'in', 'force', 'and', 'respected', 'all', 'sorts', 'of', 'strange', 'wonders', 'appear', 'before', 'your', 'eyes', 'a', 'word', 'of', 'warning', 'it', 'is', 'most', 'to', 'allow', 'tom', 'to', 'help', 'you', 'perform', 'your', 'morning', 'routine', 'highly', 'recommended']
def decode_review(x, y):
w2i = imdb.get_word_index()
w2i = {k:(v + 3) for k, v in w2i.items()}
w2i['<PAD'] = 0
w2i['<START>'] = 1
w2i['<UNK>'] = 2
i2w = {i: w for w, i in w2i.items()}
ws = (' '.join(i2w[i] for i in x))
print(f'Review: {ws}')
print(f'Actual Sentiment: {y}')
return w2i, i2w
w2i, i2w = decode_review(X_train[num], y_train[num])
Review: <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <PAD <START> <UNK> is a <UNK> typical tom and jerry short a situation is designed conflict <UNK> and mayhem ensues the characters behave in appropriate ways the natural tensions between various characters leads to general chaos the best and funniest part is when the peace <UNK> is in force and respected all sorts of strange wonders appear before your eyes a word of warning it is most <UNK> to allow tom to help you perform your morning <UNK> routine highly recommended Actual Sentiment: 1
*Comments : Original sentence is retrieved by decoding
###Get the sentiment of above sentence
print('Sentiment of Above sentence is',y_train[num])
Sentiment of Above sentence is 1
print('---'*20, f'\nNumber of rows in training dataset: {X_train.shape[0]}')
print(f'Number of columns in training dataset: {X_train.shape[1]}')
print(f'Number of unique words in training dataset: {len(np.unique(np.hstack(X_train)))}')
------------------------------------------------------------ Number of rows in training dataset: 32000 Number of columns in training dataset: 300 Number of unique words in training dataset: 9999
5.Design, train, tune and test a sequential model. [5 Marks]
vocabulary = 10000
max_words = 300
from keras.layers import Dense, Embedding, Conv1D, GlobalMaxPool1D, LSTM, TimeDistributed, Flatten
model = Sequential()
model.add(Embedding(vocabulary, 100, input_length=max_words))
model.add(LSTM(100,return_sequences= True))
dense_layer = Dense(100, activation='relu')
model.add(TimeDistributed(dense_layer))
model.add(Flatten())
model.add(Dense(1, activation='sigmoid'))
### compile the model
model.compile(optimizer='adam', loss='binary_crossentropy', metrics='accuracy')
### Print model Summary
print(model.summary())
Model: "sequential_3"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
embedding_2 (Embedding) (None, 300, 100) 1000000
lstm_2 (LSTM) (None, 300, 100) 80400
time_distributed (TimeDistr (None, 300, 100) 10100
ibuted)
flatten (Flatten) (None, 30000) 0
dense_3 (Dense) (None, 1) 30001
=================================================================
Total params: 1,120,501
Trainable params: 1,120,501
Non-trainable params: 0
_________________________________________________________________
None
h=model.fit(X_train, y_train, epochs=5, batch_size=64, validation_data = (X_valid, y_valid))
Epoch 1/5 500/500 [==============================] - 222s 441ms/step - loss: 0.4083 - accuracy: 0.8133 - val_loss: 0.2646 - val_accuracy: 0.8882 Epoch 2/5 500/500 [==============================] - 222s 444ms/step - loss: 0.1923 - accuracy: 0.9253 - val_loss: 0.2572 - val_accuracy: 0.8975 Epoch 3/5 500/500 [==============================] - 232s 465ms/step - loss: 0.1332 - accuracy: 0.9509 - val_loss: 0.2883 - val_accuracy: 0.8904 Epoch 4/5 500/500 [==============================] - 236s 472ms/step - loss: 0.0879 - accuracy: 0.9680 - val_loss: 0.3878 - val_accuracy: 0.8816 Epoch 5/5 500/500 [==============================] - 232s 464ms/step - loss: 0.0550 - accuracy: 0.9803 - val_loss: 0.4394 - val_accuracy: 0.8832
scores, accuracy = model.evaluate(X_test, y_test, verbose=0)
print("Score: {:.4f}".format(scores))
print("Accuracy: {:.4f}".format(accuracy))
Score: 0.4420 Accuracy: 0.8870
plt.style.use('fivethirtyeight')
def plot_accuracy_loss(history):
accuracy = history.history['accuracy']
val_accuracy = history.history['val_accuracy']
loss = history.history['loss']
val_loss = history.history['val_loss']
epochs = range(len(accuracy)) # Get number of epochs
plt.plot ( epochs, accuracy, label = 'training accuracy' )
plt.plot ( epochs, val_accuracy, label = 'validation accuracy' )
plt.title ('Training and validation accuracy')
plt.ylabel('Accuracy')
plt.xlabel('Epochs')
plt.legend(loc = 'lower right')
plt.figure()
plt.plot ( epochs, loss, label = 'training loss' )
plt.plot ( epochs, val_loss, label = 'validation loss' )
plt.ylabel('Loss')
plt.xlabel('Epoch')
plt.legend(loc = 'upper right')
plt.title ('Training and validation loss')
plot_accuracy_loss(h)
y_pred = (model.predict(X_test) > 0.5).astype('int32')
print(f'Classification Report:\n{classification_report(y_pred, y_test)}')
Classification Report:
precision recall f1-score support
0 0.89 0.88 0.89 4942
1 0.89 0.89 0.89 5058
accuracy 0.89 10000
macro avg 0.89 0.89 0.89 10000
weighted avg 0.89 0.89 0.89 10000
cm = confusion_matrix(y_test, y_pred)
cm
array([[4362, 550],
[ 580, 4508]], dtype=int64)
import matplotlib.pyplot as plt
import seaborn as sns
print('--'*30); print('Confusion Matrix')
cm = confusion_matrix(y_test, y_pred)
cm = pd.DataFrame(cm , index = ['Negative', 'Positive'] , columns = ['Negative','Positive'])
display(cm); print('--'*30)
plt.figure(figsize = (8, 5))
_ = sns.heatmap(cm, cmap= 'Blues', linecolor = 'black' , linewidth = 1 , annot = True,
fmt = '' , xticklabels = ['Negative', 'Positive'],
yticklabels = ['Negative', 'Positive']).set_title('Confusion Matrix for Sentiment Analysis of IMDB data')
------------------------------------------------------------ Confusion Matrix
| Negative | Positive | |
|---|---|---|
| Negative | 4362 | 550 |
| Positive | 580 | 4508 |
------------------------------------------------------------
Hint: The aim here Is to import the text, process it such a way that it can be taken as an inout to the ML/NN classifiers. Be analytical and experimental here in trying new approaches to design the best model
6. Use the designed model to print the prediction on any one sample. [5 Marks]
#### Add your code here ####
goodsample = "wonderful movie"
badsample = "can not watch even one time"
from tensorflow.keras.preprocessing.sequence import pad_sequences
for review in [goodsample, badsample]:
encoded_review = []
review_split = review.split(" ")
for word in review_split:
encoded_review.append(imdb_wordindex[word])
review_padded = pad_sequences([encoded_review], maxlen=300)
pred = model.predict(review_padded)
print(pred)
if pred > 0.5:
sentiment = 'positive'
else:
sentiment = 'negative'
print("Review: {0}\n\tSentiment: {1}".format(review, sentiment))
[[0.84323984]] Review: wonderful movie Sentiment: positive [[0.25102058]] Review: can not watch even one time Sentiment: negative
Conclusion:
• DOMAIN: Social media analytics
• CONTEXT: Past studies in Sarcasm Detection mostly make use of Twitter datasets collected using hashtag based
supervision but such datasets are noisy in terms of labels and language. Furthermore, many tweets are replies to
other tweets and detecting sarcasm in these requires the availability of contextual tweets.In this hands-on project,
the goal is to build a model to detect whether a sentence is sarcastic or not, using Bidirectional LSTMs.
• DATA DESCRIPTION:
The dataset is collected from two news websites, theonion.com and huffingtonpost.com.
This new dataset has the following advantages over the existing Twitter datasets:Since news headlines are written by professionals in a formal manner, there are no spelling mistakes and informal usage. This reduces the sparsity and also increases the chance of finding pre-trained embeddings. Furthermore, since the sole purpose of TheOnion is to publish sarcastic news, we get high-quality labels with much less noise as compared to Twitter datasets. Unlike tweets that reply to other tweets, the news headlines obtained are self-contained. This would help us in teasing apart the real sarcastic elements.
Content: Each record consists of three attributes:
is_sarcastic: 1 if the record is sarcastic otherwise 0
headline: the headline of the news article
article_link: link to the original news article. Useful in collecting supplementary data
Reference: https://github.com/rishabhmisra/News-Headlines-Dataset-For-Sarcasm-Detection
PROJECT OBJECTIVE: Build a sequential NLP classifier which can use input text parameters to determine the customer sentiments
from nltk.corpus import stopwords
import re
import nltk
#from wordcloud import WordCloud
nltk.download("stopwords")
from sklearn.model_selection import train_test_split, RandomizedSearchCV, RepeatedStratifiedKFold
from sklearn.ensemble import RandomForestClassifier
import tensorflow as tf
from tensorflow.keras.preprocessing.text import Tokenizer
from tensorflow.keras.preprocessing.sequence import pad_sequences
from sklearn.metrics import confusion_matrix, accuracy_score, roc_curve, roc_auc_score, recall_score, f1_score
from lightgbm import LGBMClassifier
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense, GRU, Embedding
from tensorflow.keras.optimizers import Adam,SGD,RMSprop
import optuna
import time
import warnings
warnings.filterwarnings('ignore')
[nltk_data] Downloading package stopwords to [nltk_data] C:\Users\HP\AppData\Roaming\nltk_data... [nltk_data] Package stopwords is already up-to-date!
1.Read and explore the data [3 Marks]
data = pd.read_json("Sarcasm_Headlines_Dataset.json", lines=True)
data.head()
| is_sarcastic | headline | article_link | |
|---|---|---|---|
| 0 | 1 | thirtysomething scientists unveil doomsday clo... | https://www.theonion.com/thirtysomething-scien... |
| 1 | 0 | dem rep. totally nails why congress is falling... | https://www.huffingtonpost.com/entry/donna-edw... |
| 2 | 0 | eat your veggies: 9 deliciously different recipes | https://www.huffingtonpost.com/entry/eat-your-... |
| 3 | 1 | inclement weather prevents liar from getting t... | https://local.theonion.com/inclement-weather-p... |
| 4 | 1 | mother comes pretty close to using word 'strea... | https://www.theonion.com/mother-comes-pretty-c... |
data.tail()
| is_sarcastic | headline | article_link | |
|---|---|---|---|
| 28614 | 1 | jews to celebrate rosh hashasha or something | https://www.theonion.com/jews-to-celebrate-ros... |
| 28615 | 1 | internal affairs investigator disappointed con... | https://local.theonion.com/internal-affairs-in... |
| 28616 | 0 | the most beautiful acceptance speech this week... | https://www.huffingtonpost.com/entry/andrew-ah... |
| 28617 | 1 | mars probe destroyed by orbiting spielberg-gat... | https://www.theonion.com/mars-probe-destroyed-... |
| 28618 | 1 | dad clarifies this not a food stop | https://www.theonion.com/dad-clarifies-this-no... |
print('data shape',data.shape)
data shape (28619, 3)
data['is_sarcastic'].nunique()
2
data['is_sarcastic'].value_counts()
0 14985 1 13634 Name: is_sarcastic, dtype: int64
data.isnull().sum()
is_sarcastic 0 headline 0 article_link 0 dtype: int64
data['article_link'].nunique()
28617
data['headline'].head(1)
0 thirtysomething scientists unveil doomsday clo... Name: headline, dtype: object
from urllib.parse import urlparse
def get_netloc(url):
scheme, netloc, path, params, query, fragment = urlparse(url)
return netloc
link = []
for i in range(len(data.article_link)):
link.append(get_netloc(data.article_link[i]))
data["link"] = link
data.head()
| is_sarcastic | headline | article_link | link | |
|---|---|---|---|---|
| 0 | 1 | thirtysomething scientists unveil doomsday clo... | https://www.theonion.com/thirtysomething-scien... | www.theonion.com |
| 1 | 0 | dem rep. totally nails why congress is falling... | https://www.huffingtonpost.com/entry/donna-edw... | www.huffingtonpost.com |
| 2 | 0 | eat your veggies: 9 deliciously different recipes | https://www.huffingtonpost.com/entry/eat-your-... | www.huffingtonpost.com |
| 3 | 1 | inclement weather prevents liar from getting t... | https://local.theonion.com/inclement-weather-p... | local.theonion.com |
| 4 | 1 | mother comes pretty close to using word 'strea... | https://www.theonion.com/mother-comes-pretty-c... | www.theonion.com |
rands = random.sample(range(1, data.shape[0]), 5)
print(rands)
[23717, 4737, 17316, 5291, 16703]
for i in rands:
#print(i)
print(data.loc[i,'headline'],'is_sarcastic value is',data.loc[i,'is_sarcastic'])
#print(''+data.loc[i,'headline']+' is_sarcastic value is'+ data.loc[i,'is_sarcastic'])
people think ivanka trump's new twitter bio is an insult to women is_sarcastic value is 0 kim kardashian's 11 best outfits of 2015 is_sarcastic value is 0 man would rather annoy small group of friends than bunch of strangers at party is_sarcastic value is 1 'it's just a plant, man,' says purdue pharma ceo waving poppy flower before opioid lawsuit judge is_sarcastic value is 1 republicans steel for a loss in trump country special election is_sarcastic value is 0
data['link'].nunique()
9
print('Analysis of is_sarcastic Based on the website Name' ); print('--'*30)
hf = data[data['article_link'].str.contains('huffingtonpost.com')].shape[0]
op = data[data['article_link'].str.contains('theonion.com')].shape[0]
is_sarcastic_hf = data.loc[(data['article_link'].str.contains('huffingtonpost.com')) & (data['is_sarcastic'] == 1)].shape[0]
not_sarcastic_hf = data.loc[(data['article_link'].str.contains('huffingtonpost.com')) & (data['is_sarcastic'] == 0)].shape[0]
is_sarcastic_op = data.loc[(data['article_link'].str.contains('theonion.com')) & (data['is_sarcastic'] == 1)].shape[0]
not_sarcastic_op = data.loc[(data['article_link'].str.contains('theonion.com')) & (data['is_sarcastic'] == 0)].shape[0]
display(pd.DataFrame([[is_sarcastic_hf, is_sarcastic_op], [not_sarcastic_hf, not_sarcastic_op]],
columns = ['huffingtonpost', 'theonion'], index = ['Sarcastic', 'Non-sarcastic']))
Analysis of is_sarcastic Based on the website Name ------------------------------------------------------------
| huffingtonpost | theonion | |
|---|---|---|
| Sarcastic | 0 | 13634 |
| Non-sarcastic | 14985 | 1 |
import seaborn as sns
import matplotlib.pyplot as plt
print(data.is_sarcastic.value_counts() ,"\n")
fig, ax = plt.subplots(1,2, figsize=(19, 5))
f1 = sns.countplot(data.is_sarcastic, ax = ax[0]);
f1.set_title("Count of Sarcastic Yes and No")
f1.set_ylabel("Count")
f1.set_xlabel("Target")
f2 = plt.pie(data["is_sarcastic"].value_counts().values,explode=[0,0],labels=data.is_sarcastic.value_counts().index, autopct='%1.1f%%')
fig.show()
0 14985 1 13634 Name: is_sarcastic, dtype: int64
Observations:
• There are 28619 records with 3 features. The headlines is independant feature and is_sarcastic is dependent feature.
• There are 14985 records(52.4%) isSarcastic 0 and 13634 records(47.6%) as is_Sarcastic is 1
• The data is almost balanced
• The the headlines are from two websites "theonion" and "huffingtonpost" . "theonion" has many suburls
• From the analysis made above is very clear that all the Sarcastic headlines from "theonion" website and "huffingtonpost" has non sarcastic headlines.
2. Retain relevant columns [3 Marks]
sarc_data = data[['is_sarcastic', 'headline']].copy()
sarc_data.head()
| is_sarcastic | headline | |
|---|---|---|
| 0 | 1 | thirtysomething scientists unveil doomsday clo... |
| 1 | 0 | dem rep. totally nails why congress is falling... |
| 2 | 0 | eat your veggies: 9 deliciously different recipes |
| 3 | 1 | inclement weather prevents liar from getting t... |
| 4 | 1 | mother comes pretty close to using word 'strea... |
Comments:
3. Get length of each sentence [3 Marks]
sarc_data_temp= sarc_data.copy()
sarc_data["headline"].loc[0]
'thirtysomething scientists unveil doomsday clock of hair loss'
len(sarc_data["headline"].loc[0])
61
sarc_data['length']=sarc_data['headline'].str.len()
sarc_data.head()
| is_sarcastic | headline | length | |
|---|---|---|---|
| 0 | 1 | thirtysomething scientists unveil doomsday clo... | 61 |
| 1 | 0 | dem rep. totally nails why congress is falling... | 79 |
| 2 | 0 | eat your veggies: 9 deliciously different recipes | 49 |
| 3 | 1 | inclement weather prevents liar from getting t... | 52 |
| 4 | 1 | mother comes pretty close to using word 'strea... | 61 |
print("Maximum Length of the sentences from DataFrame = ",sarc_data['length'].max())
Maximum Length of the sentences from DataFrame = 926
sarc_data.loc[sarc_data['length'] == sarc_data['length'].max()]
| is_sarcastic | headline | length | |
|---|---|---|---|
| 7302 | 1 | hot wheels ranked number one toy for rolling d... | 926 |
def find_num_words(data):
wordlist = []
splitting_list = data.str.split()
for i in range(len(splitting_list)):
for j in range(len(splitting_list[i])):
wordlist.append(splitting_list[i][j])
wordset = set(wordlist)
print("total number of unique words",len(wordset))
print("total number of words",len(wordlist))
find_num_words(sarc_data.headline)
total number of unique words 38234 total number of words 287620
#library that contains punctuation
import string
string.punctuation
from nltk.stem import WordNetLemmatizer
#defining the object for Lemmatization
wordnet_lemmatizer = WordNetLemmatizer()
#importing nlp library
import nltk
#Stop words present in the library
stopwords = nltk.corpus.stopwords.words('english')
#defining the function to remove punctuation
def remove_punctuation(text):
punctuationfree="".join([i for i in text if i not in string.punctuation])
return punctuationfree
#defining the function to remove stopwords from tokenized text
def remove_stopwords(text):
output= ' '.join([word for word in text.split() if word not in stopwords])
return output
#defining the function for lemmatization
def lemmatizer(text):
lemm_text = [wordnet_lemmatizer.lemmatize(word) for word in text]
return lemm_text
# Remove html tags
def removeHTML(text):
regex = re.compile('<.*?>')
return re.sub(regex, ' ', text)
# Remove URLs
def removeURL(text):
regex = re.compile('http[s]?://\S+')
return re.sub(regex, ' ', text)
# remove numbers, punctuation and any special characters (keep only alphabets)
def onlyAlphabets(text):
regex = re.compile('[^a-zA-Z]')
return re.sub(regex, ' ', text)
def lemmetize(text):
# Create an empty list containing lemmatized words
lemmatized_list = []
text_words = text.split(" ")
#print(text_words)
# Iterate through every word to lemmatize
for word in text_words:
lemmatized_list.append(wordnet_lemmatizer.lemmatize(word, pos="v"))
#print(lemmatized_list)
# Join the list
lemmatized_text = " ".join(lemmatized_list)
#print(lemmatized_text)
return lemmatized_text
def removeSpaces(text):
# Strip unwanted spaces
return text.strip()
sarc_data['headline'].values[100]
'report: 70% of trump endorsements made after staring at bedroom ceiling for 4 hours'
x=7302
tmp_sentence=lemmetize(sarc_data['headline'].values[x])
tmp_sentence
'hot wheel rank number one toy for roll down ramp, knock over dominoes that send marble down a funnel, drop onto teeter-totter that yank on string, cause pulley system to raise wooden block, propel series of twine rollers that unwind spring, launch tennis ball across room, inch tire down slope until it hit power switch, activate table fan that blow toy ship with nail attach to it across kiddie pool, pop water balloon that fill cup, weigh down lever that force basketball down track, nudge broomstick on axis to rotate, allow golf ball to roll into sideways coffee mug, which tumble down row of hardcover book until handle catch hook attach to lever that cause wooden mallet to slam down on serve spoon, catapult small ball into cup attach by ribbon to lazy susan, which spin until it push d battery down incline plane, tip over salt shaker to season omelet'
headline = sarc_data['headline'].values[x]
sarcasm = sarc_data['is_sarcastic'].values[x]
print("before ",headline)
cleaned_sentence = []
# Remove URL
sentence = removeURL(headline)
# Remove HTML
sentence = removeHTML(sentence)
# Get only alphabets
sentence = onlyAlphabets(sentence)
#Convert to lower case
sentence = sentence.lower()
#Remove punctuation
sentence=remove_punctuation(sentence)
#Remove stop words
sentence= remove_stopwords(sentence)
#Remove spaces
sentence=removeSpaces(sentence)
#Lemmetize
sentence=lemmetize(sentence)
print("after ", sentence)
before hot wheels ranked number one toy for rolling down ramp, knocking over dominoes that send marble down a funnel, dropping onto teeter-totter that yanks on string, causing pulley system to raise wooden block, propelling series of twine rollers that unwind spring, launching tennis ball across room, inching tire down slope until it hits power switch, activating table fan that blows toy ship with nail attached to it across kiddie pool, popping water balloon that fills cup, weighing down lever that forces basketball down track, nudging broomstick on axis to rotate, allowing golf ball to roll into sideways coffee mug, which tumbles down row of hardcover books until handle catches hook attached to lever that causes wooden mallet to slam down on serving spoon, catapulting small ball into cup attached by ribbon to lazy susan, which spins until it pushes d battery down incline plane, tipping over salt shaker to season omelet after hot wheel rank number one toy roll ramp knock dominoes send marble funnel drop onto teeter totter yank string cause pulley system raise wooden block propel series twine rollers unwind spring launch tennis ball across room inch tire slope hit power switch activate table fan blow toy ship nail attach across kiddie pool pop water balloon fill cup weigh lever force basketball track nudge broomstick axis rotate allow golf ball roll sideways coffee mug tumble row hardcover book handle catch hook attach lever cause wooden mallet slam serve spoon catapult small ball cup attach ribbon lazy susan spin push battery incline plane tip salt shaker season omelet
sno = nltk.stem.SnowballStemmer('english') # Initializing stemmer
wordcloud = [[], []]
all_sentences = [] # All cleaned sentences
for x in range(len(sarc_data['headline'].values)):
headline = sarc_data['headline'].values[x]
sarcasm = sarc_data['is_sarcastic'].values[x]
#print("before ",headline)
cleaned_sentence = []
# Remove URL
sentence = removeURL(headline)
# Remove HTML
sentence = removeHTML(sentence)
# Get only alphabets
sentence = onlyAlphabets(sentence)
#Convert to lower case
sentence = sentence.lower()
#Remove punctuation
sentence=remove_punctuation(sentence)
#Remove stop words
sentence= remove_stopwords(sentence)
#Remove spaces
sentence=removeSpaces(sentence)
#Lemmetize
sentence=lemmetize(sentence)
all_sentences.append(''.join(sentence))
len(all_sentences)
28619
all_sentences[x]
'dad clarify food stop'
sarc_data['final_headline'] = all_sentences
from wordcloud import WordCloud
plt.figure(figsize = (20,20))
plt.grid(False)
wc = WordCloud(max_words = 2000 , width = 1600 , height = 800).generate(" ".join(sarc_data[sarc_data.is_sarcastic == 0].final_headline))
plt.imshow(wc , interpolation = 'bilinear')
<matplotlib.image.AxesImage at 0x1cb1a975040>
plt.figure(figsize = (20,20))
plt.grid(False)
wc = WordCloud(max_words = 2000 , width = 1600 , height = 800).generate(" ".join(sarc_data[sarc_data.is_sarcastic == 1].final_headline))
plt.imshow(wc , interpolation = 'bilinear')
<matplotlib.image.AxesImage at 0x1cb2a262a00>
sarc_data.head()
| is_sarcastic | headline | length | final_headline | |
|---|---|---|---|---|
| 0 | 1 | thirtysomething scientists unveil doomsday clo... | 61 | thirtysomething scientists unveil doomsday clo... |
| 1 | 0 | dem rep. totally nails why congress is falling... | 79 | dem rep totally nail congress fall short gende... |
| 2 | 0 | eat your veggies: 9 deliciously different recipes | 49 | eat veggies deliciously different recipes |
| 3 | 1 | inclement weather prevents liar from getting t... | 52 | inclement weather prevent liar get work |
| 4 | 1 | mother comes pretty close to using word 'strea... | 61 | mother come pretty close use word stream corre... |
sarc_data.tail()
| is_sarcastic | headline | length | final_headline | |
|---|---|---|---|---|
| 28614 | 1 | jews to celebrate rosh hashasha or something | 44 | jews celebrate rosh hashasha something |
| 28615 | 1 | internal affairs investigator disappointed con... | 87 | internal affairs investigator disappoint consp... |
| 28616 | 0 | the most beautiful acceptance speech this week... | 71 | beautiful acceptance speech week come queer ko... |
| 28617 | 1 | mars probe destroyed by orbiting spielberg-gat... | 61 | mar probe destroy orbit spielberg gate space p... |
| 28618 | 1 | dad clarifies this not a food stop | 34 | dad clarify food stop |
print('--'*40); print('Get the number of words, find the maximum number of words and print the maximum number of words');
#print('Number of words ranges from 2 to 39.'); print('--'*40)
# Get length of each line
sarc_data['nb_words'] = sarc_data['final_headline'].apply(lambda x: len(x.split(' ')))
print('Minimum number of words: {}'.format(sarc_data['nb_words'].min()))
print('Maximum number of words: {}'.format(sarc_data['nb_words'].max()))
print('Line with maximum number of words: {}'.format(sarc_data[sarc_data['nb_words'] == sarc_data['nb_words'].max()]['final_headline'].values[0]))
-------------------------------------------------------------------------------- Get the number of words, find the maximum number of words and print the maximum number of words Minimum number of words: 1 Maximum number of words: 107 Line with maximum number of words: hot wheel rank number one toy roll ramp knock dominoes send marble funnel drop onto teeter totter yank string cause pulley system raise wooden block propel series twine rollers unwind spring launch tennis ball across room inch tire slope hit power switch activate table fan blow toy ship nail attach across kiddie pool pop water balloon fill cup weigh lever force basketball track nudge broomstick axis rotate allow golf ball roll sideways coffee mug tumble row hardcover book handle catch hook attach lever cause wooden mallet slam serve spoon catapult small ball cup attach ribbon lazy susan spin push battery incline plane tip salt shaker season omelet
sarc_data.head()
| is_sarcastic | headline | length | final_headline | nb_words | |
|---|---|---|---|---|---|
| 0 | 1 | thirtysomething scientists unveil doomsday clo... | 61 | thirtysomething scientists unveil doomsday clo... | 7 |
| 1 | 0 | dem rep. totally nails why congress is falling... | 79 | dem rep totally nail congress fall short gende... | 10 |
| 2 | 0 | eat your veggies: 9 deliciously different recipes | 49 | eat veggies deliciously different recipes | 5 |
| 3 | 1 | inclement weather prevents liar from getting t... | 52 | inclement weather prevent liar get work | 6 |
| 4 | 1 | mother comes pretty close to using word 'strea... | 61 | mother come pretty close use word stream corre... | 8 |
sarc_data.loc[sarc_data['nb_words'] == sarc_data['nb_words'].max()]
| is_sarcastic | headline | length | final_headline | nb_words | |
|---|---|---|---|---|---|
| 7302 | 1 | hot wheels ranked number one toy for rolling d... | 926 | hot wheel rank number one toy roll ramp knock ... | 107 |
Comments
The data at index 7302 has maximum number of words 107 and the same have been printed above
4. Define parameters [3 Marks]
max_features = 10000
maxlen = sarc_data['nb_words'].max()
embedding_size = 200
maxlen
107
5. Get indices for words [3 Marks]
from tensorflow.keras.preprocessing.text import Tokenizer
tokenizer = Tokenizer(num_words = max_features)
tokenizer.fit_on_texts(list(sarc_data['final_headline']))
print("The word index",tokenizer.word_index)
The word index {'trump': 1, 'new': 2, 'man': 3, 'get': 4, 'make': 5, 'say': 6, 'report': 7, 'time': 8, 'go': 9, 'one': 10, 'year': 11, 'woman': 12, 'find': 13, 'day': 14, 'take': 15, 'u': 16, 'area': 17, 'like': 18, 'donald': 19, 'first': 20, 'people': 21, 'obama': 22, 'old': 23, 'house': 24, 'women': 25, 'show': 26, 'nation': 27, 'life': 28, 'back': 29, 'world': 30, 'call': 31, 'white': 32, 'look': 33, 'give': 34, 'know': 35, 'still': 36, 'want': 37, 'think': 38, 'work': 39, 'clinton': 40, 'watch': 41, 'plan': 42, 'come': 43, 'state': 44, 'live': 45, 'school': 46, 'use': 47, 'right': 48, 'could': 49, 'family': 50, 'tell': 51, 'love': 52, 'need': 53, 'see': 54, 'way': 55, 'americans': 56, 'kill': 57, 'black': 58, 'change': 59, 'study': 60, 'star': 61, 'would': 62, 'parent': 63, 'gop': 64, 'bill': 65, 'kid': 66, 'american': 67, 'shoot': 68, 'years': 69, 'leave': 70, 'last': 71, 'president': 72, 'talk': 73, 'home': 74, 'really': 75, 'best': 76, 'try': 77, 'help': 78, 'police': 79, 'america': 80, 'ask': 81, 'break': 82, 'die': 83, 'mom': 84, 'death': 85, 'good': 86, 'meet': 87, 'run': 88, 'war': 89, 'campaign': 90, 'video': 91, 'party': 92, 'big': 93, 'every': 94, 'things': 95, 'stop': 96, 'open': 97, 'reveal': 98, 'child': 99, 'game': 100, 'health': 101, 'hillary': 102, 'may': 103, 'attack': 104, 'announce': 105, 'guy': 106, 'win': 107, 'lose': 108, 'keep': 109, 'dog': 110, 'self': 111, 'dead': 112, 'little': 113, 'high': 114, 'court': 115, 'job': 116, 'baby': 117, 'feel': 118, 'never': 119, 'face': 120, 'fire': 121, 'name': 122, 'let': 123, 'release': 124, 'john': 125, 'vote': 126, 'gun': 127, 'even': 128, 'fight': 129, 'force': 130, 'end': 131, 'news': 132, 'real': 133, 'start': 134, 'fan': 135, 'gay': 136, 'put': 137, 'couple': 138, 'spend': 139, 'election': 140, 'fuck': 141, 'move': 142, 'next': 143, 'dad': 144, 'week': 145, 'bush': 146, 'local': 147, 'eat': 148, 'sex': 149, 'around': 150, 'turn': 151, 'debate': 152, 'save': 153, 'warn': 154, 'million': 155, 'care': 156, 'miss': 157, 'pay': 158, 'office': 159, 'another': 160, 'night': 161, 'college': 162, 'two': 163, 'long': 164, 'film': 165, 'ever': 166, 'lead': 167, 'thing': 168, 'top': 169, 'play': 170, 'finally': 171, 'learn': 172, 'book': 173, 'much': 174, 'children': 175, 'become': 176, 'us': 177, 'mother': 178, 'second': 179, 'actually': 180, 'company': 181, 'claim': 182, 'season': 183, 'god': 184, 'bring': 185, 'line': 186, 'deal': 187, 'body': 188, 'men': 189, 'poll': 190, 'congress': 191, 'senate': 192, 'son': 193, 'everyone': 194, 'support': 195, 'wear': 196, 'introduce': 197, 'money': 198, 'hit': 199, 'bad': 200, 'north': 201, 'free': 202, 'national': 203, 'better': 204, 'sexual': 205, 'power': 206, 'climate': 207, 'city': 208, 'friend': 209, 'head': 210, 'away': 211, 'facebook': 212, 'part': 213, 'anti': 214, 'teen': 215, 'without': 216, 'hold': 217, 'law': 218, 'return': 219, 'york': 220, 'drink': 221, 'place': 222, 'food': 223, 'word': 224, 'enough': 225, 'offer': 226, 'father': 227, 'media': 228, 'hear': 229, 'paul': 230, 'post': 231, 'students': 232, 'ban': 233, 'set': 234, 'happen': 235, 'pope': 236, 'date': 237, 'fail': 238, 'story': 239, 'case': 240, 'cop': 241, 'rule': 242, 'group': 243, 'ways': 244, 'single': 245, 'sign': 246, 'movie': 247, 'reason': 248, 'dream': 249, 'unveil': 250, 'government': 251, 'rise': 252, 'order': 253, 'history': 254, 'sanders': 255, 'hand': 256, 'business': 257, 'tv': 258, 'friends': 259, 'wait': 260, 'age': 261, 'supreme': 262, 'entire': 263, 'admit': 264, 'fall': 265, 'question': 266, 'buy': 267, 'drive': 268, 'cover': 269, 'email': 270, 'celebrate': 271, 'girl': 272, 'pretty': 273, 'send': 274, 'visit': 275, 'record': 276, 'already': 277, 'read': 278, 'great': 279, 'wed': 280, 'tax': 281, 'surprise': 282, 'pass': 283, 'throw': 284, 'eye': 285, 'must': 286, 'discover': 287, 'car': 288, 'walk': 289, 'control': 290, 'th': 291, 'middle': 292, 'jam': 293, 'country': 294, 'former': 295, 'public': 296, 'tweet': 297, 'room': 298, 'hop': 299, 'presidential': 300, 'sleep': 301, 'speech': 302, 'social': 303, 'race': 304, 'realize': 305, 'team': 306, 'begin': 307, 'create': 308, 'issue': 309, 'behind': 310, 'republican': 311, 'something': 312, 'demand': 313, 'full': 314, 'judge': 315, 'believe': 316, 'future': 317, 'mean': 318, 'ceo': 319, 'point': 320, 'student': 321, 'human': 322, 'photos': 323, 'christmas': 324, 'scientists': 325, 'protest': 326, 'drug': 327, 'stand': 328, 'voters': 329, 'morning': 330, 'share': 331, 'security': 332, 'write': 333, 'wife': 334, 'republicans': 335, 'teacher': 336, 'boy': 337, 'secret': 338, 'award': 339, 'might': 340, 'speak': 341, 'democrats': 342, 'list': 343, 'ryan': 344, 'honor': 345, 'add': 346, 'wish': 347, 'rock': 348, 'struggle': 349, 'park': 350, 'service': 351, 'water': 352, 'today': 353, 'follow': 354, 'person': 355, 'marriage': 356, 'attempt': 357, 'violence': 358, 'gift': 359, 'michael': 360, 'cut': 361, 'super': 362, 'build': 363, 'ad': 364, 'pull': 365, 'tip': 366, 'explain': 367, 'department': 368, 'test': 369, 'wall': 370, 'many': 371, 'sure': 372, 'sit': 373, 'bernie': 374, 'worry': 375, 'holiday': 376, 'california': 377, 'hot': 378, 'bar': 379, 'remember': 380, 'drop': 381, 'female': 382, 'raise': 383, 'political': 384, 'check': 385, 'minutes': 386, 'shit': 387, 'inside': 388, 'everything': 389, 'class': 390, 'red': 391, 'days': 392, 'always': 393, 'twitter': 394, 'doctor': 395, 'mark': 396, 'travel': 397, 'urge': 398, 'perfect': 399, 'candidate': 400, 'bear': 401, 'russia': 402, 'light': 403, 'girls': 404, 'employee': 405, 'summer': 406, 'allow': 407, 'daughter': 408, 'phone': 409, 'number': 410, 'town': 411, 'photo': 412, 'fund': 413, 'art': 414, 'music': 415, 'cat': 416, 'month': 417, 'push': 418, 'air': 419, 'letter': 420, 'act': 421, 'idea': 422, 'heart': 423, 'murder': 424, 'spot': 425, 'ice': 426, 'earth': 427, 'past': 428, 'king': 429, 'assault': 430, 'iran': 431, 'obamacare': 432, 'grow': 433, 'inspire': 434, 'pick': 435, 'biden': 436, 'catch': 437, 'wrong': 438, 'three': 439, 'secretary': 440, 'mike': 441, 'host': 442, 'dance': 443, 'girlfriend': 444, 'step': 445, 'korea': 446, 'cruz': 447, 'ready': 448, 'someone': 449, 'george': 450, 'thousands': 451, 'excite': 452, 'lot': 453, 'well': 454, 'cause': 455, 'dress': 456, 'justice': 457, 'market': 458, 'cancer': 459, 'close': 460, 'fear': 461, 'accuse': 462, 'suspect': 463, 'probably': 464, 'hours': 465, 'together': 466, 'train': 467, 'charge': 468, 'director': 469, 'restaurant': 470, 'threaten': 471, 'officials': 472, 'march': 473, 'street': 474, 'young': 475, 'half': 476, 'store': 477, 'abuse': 478, 'isis': 479, 'texas': 480, 'experience': 481, 'administration': 482, 'stay': 483, 'continue': 484, 'guide': 485, 'ex': 486, 'owner': 487, 'promise': 488, 'launch': 489, 'crash': 490, 'yet': 491, 'kim': 492, 'receive': 493, 'chief': 494, 'washington': 495, 'trip': 496, 'romney': 497, 'small': 498, 'box': 499, 'crisis': 500, 'francis': 501, 'nothing': 502, 'teach': 503, 'lie': 504, 'interview': 505, 'fbi': 506, 'prison': 507, 'education': 508, 'unite': 509, 'remind': 510, 'arrest': 511, 'voice': 512, 'hard': 513, 'hour': 514, 'kind': 515, 'shop': 516, 'confirm': 517, 'south': 518, 'ted': 519, 'third': 520, 'military': 521, 'hollywood': 522, 'china': 523, 'system': 524, 'personal': 525, 'community': 526, 'internet': 527, 'less': 528, 'burn': 529, 'mind': 530, 'wonder': 531, 'fox': 532, 'thank': 533, 'birthday': 534, 'months': 535, 'online': 536, 'outside': 537, 'chris': 538, 'program': 539, 'message': 540, 'democratic': 541, 'increase': 542, 'figure': 543, 'mueller': 544, 'sport': 545, 'nuclear': 546, 'protect': 547, 'percent': 548, 'officer': 549, 'key': 550, 'roll': 551, 'happy': 552, 'fun': 553, 'federal': 554, 'recall': 555, 'clean': 556, 'apologize': 557, 'card': 558, 'vow': 559, 'florida': 560, 'straight': 561, 'aid': 562, 'special': 563, 'prove': 564, 'latest': 565, 'rat': 566, 'majority': 567, 'beat': 568, 'forget': 569, 'decide': 570, 'address': 571, 'beautiful': 572, 'sell': 573, 'congressman': 574, 'abortion': 575, 'character': 576, 'sound': 577, 'problem': 578, 'since': 579, 'investigation': 580, 'search': 581, 'risk': 582, 'pence': 583, 'center': 584, 'huge': 585, 'link': 586, 'series': 587, 'muslim': 588, 'k': 589, 'minute': 590, 'picture': 591, 'defend': 592, 'different': 593, 'hate': 594, 'late': 595, 'blow': 596, 'c': 597, 'matter': 598, 'leaders': 599, 'senator': 600, 'blame': 601, 'enter': 602, 'press': 603, 'bomb': 604, 'avoid': 605, 'al': 606, 'stephen': 607, 'prince': 608, 'mass': 609, 'strike': 610, 'scott': 611, 'front': 612, 'enjoy': 613, 'favorite': 614, 'feature': 615, 'anything': 616, 'fashion': 617, 'relationship': 618, 'hair': 619, 'whole': 620, 'weekend': 621, 'non': 622, 'chinese': 623, 'millions': 624, 'slam': 625, 'bank': 626, 'candidates': 627, 'russian': 628, 'stick': 629, 'career': 630, 'response': 631, 'moment': 632, 'huffpost': 633, 'david': 634, 'union': 635, 'track': 636, 'trailer': 637, 'birth': 638, 'jimmy': 639, 'assure': 640, 'st': 641, 'employees': 642, 'taylor': 643, 'update': 644, 'immigration': 645, 'expect': 646, 'apple': 647, 'side': 648, 'steal': 649, 'politics': 650, 'early': 651, 'interest': 652, 'billion': 653, 'remain': 654, 'tom': 655, 'respond': 656, 'leader': 657, 'space': 658, 'recommend': 659, 'complete': 660, 'hope': 661, 'victims': 662, 'review': 663, 'least': 664, 'amazon': 665, 'completely': 666, 'un': 667, 'refuse': 668, 'cost': 669, 'target': 670, 'style': 671, 'massive': 672, 'stun': 673, 'band': 674, 'reform': 675, 'concern': 676, 'syria': 677, 'reach': 678, 'suggest': 679, 'onion': 680, 'rally': 681, 'cnn': 682, 'true': 683, 'experts': 684, 'vacation': 685, 'far': 686, 'divorce': 687, 'low': 688, 'consider': 689, 'lessons': 690, 'color': 691, 'sick': 692, 'board': 693, 'west': 694, 'shut': 695, 'joe': 696, 'bus': 697, 'conversation': 698, 'land': 699, 'clearly': 700, 'prepare': 701, 'industry': 702, 'fly': 703, 'join': 704, 'decision': 705, 'queer': 706, 'remove': 707, 'policy': 708, 'totally': 709, 'shirt': 710, 'deliver': 711, 'tour': 712, 'husband': 713, 'iraq': 714, 'table': 715, 'weird': 716, 'listen': 717, 'stage': 718, 'deny': 719, 'accept': 720, 'j': 721, 'whether': 722, 'blood': 723, 'coworker': 724, 'song': 725, 'sentence': 726, 'church': 727, 'battle': 728, 'reality': 729, 'blast': 730, 'adorable': 731, 'prevent': 732, 'friday': 733, 'rubio': 734, 'workers': 735, 'role': 736, 'governor': 737, 'purchase': 738, 'glass': 739, 'jr': 740, 'oil': 741, 'powerful': 742, 'chance': 743, 'chicago': 744, 'shock': 745, 'seek': 746, 'across': 747, 'users': 748, 'wake': 749, 'apartment': 750, 'panic': 751, 'global': 752, 'syrian': 753, 'fill': 754, 'treat': 755, 'bowl': 756, 'marry': 757, 'final': 758, 'near': 759, 'dinner': 760, 'e': 761, 'draw': 762, 'queen': 763, 'comment': 764, 'stress': 765, 'lgbt': 766, 'ruin': 767, 'almost': 768, 'worst': 769, 'stuff': 770, 'coffee': 771, 'hire': 772, 'longer': 773, 'terrify': 774, 'boyfriend': 775, 'hurricane': 776, 'road': 777, 'arm': 778, 'block': 779, 'piece': 780, 'anyone': 781, 'waste': 782, 'touch': 783, 'robert': 784, 'google': 785, 'repeal': 786, 'suicide': 787, 'flight': 788, 'oscars': 789, 'israel': 790, 'hall': 791, 'kardashian': 792, 'university': 793, 'netflix': 794, 'worth': 795, 'anniversary': 796, 'official': 797, 'boss': 798, 'football': 799, 'bag': 800, 'cool': 801, 'trade': 802, 'challenge': 803, 'artist': 804, 'oscar': 805, 'mental': 806, 'trans': 807, 'n': 808, 'tear': 809, 'weight': 810, 'general': 811, 'destroy': 812, 'grandma': 813, 'data': 814, 'iowa': 815, 'action': 816, 'boys': 817, 'lay': 818, 'jenner': 819, 'level': 820, 'rest': 821, 'audience': 822, 'plane': 823, 'nfl': 824, 'evidence': 825, 'joke': 826, 'agree': 827, 'swift': 828, 'resign': 829, 'result': 830, 'amaze': 831, 'hat': 832, 'door': 833, 'bite': 834, 'harry': 835, 'pound': 836, 'tree': 837, 'important': 838, 'magazine': 839, 'planet': 840, 'focus': 841, 'transgender': 842, 'base': 843, 'michelle': 844, 'halloween': 845, 'steve': 846, 'executive': 847, 'five': 848, 'mistake': 849, 'kick': 850, 'bathroom': 851, 'crime': 852, 'defense': 853, 'reportedly': 854, 'form': 855, 'moms': 856, 'voter': 857, 'peace': 858, 'ferguson': 859, 'success': 860, 'paris': 861, 'possible': 862, 'tire': 863, 'clothe': 864, 'members': 865, 'supporters': 866, 'biggest': 867, 'camp': 868, 'poor': 869, 'crowd': 870, 'blue': 871, 'advice': 872, 'ideas': 873, 'hide': 874, 'machine': 875, 'nyc': 876, 'website': 877, 'cast': 878, 'view': 879, 'easy': 880, 'price': 881, 'beauty': 882, 'rescue': 883, 'staff': 884, 'major': 885, 'kerry': 886, 'carolina': 887, 'bird': 888, 'hell': 889, 'racist': 890, 'short': 891, 'sue': 892, 'teens': 893, 'allegations': 894, 'accidentally': 895, 'fast': 896, 'protesters': 897, 'ring': 898, 'humans': 899, 'answer': 900, 'pro': 901, 'green': 902, 'fake': 903, 'screen': 904, 'elizabeth': 905, 'crack': 906, 'driver': 907, 'homeless': 908, 'kelly': 909, 'quietly': 910, 'culture': 911, 'chicken': 912, 'williams': 913, 'proud': 914, 'apparently': 915, 'clear': 916, 'cup': 917, 'spring': 918, 'replace': 919, 'energy': 920, 'healthy': 921, 'model': 922, 'lady': 923, 'pregnant': 924, 'reporter': 925, 'pop': 926, 'ball': 927, 'tie': 928, 'economy': 929, 'ben': 930, 'performance': 931, 'jones': 932, 'drag': 933, 'moore': 934, 'finish': 935, 'emotional': 936, 'cross': 937, 'horse': 938, 'mayor': 939, 'saudi': 940, 'religious': 941, 'pack': 942, 'mccain': 943, 'male': 944, 'forward': 945, 'older': 946, 'ride': 947, 'colbert': 948, 'hero': 949, 'border': 950, 'christian': 951, 'album': 952, 'problems': 953, 'nice': 954, 'double': 955, 'dark': 956, 'soon': 957, 'paper': 958, 'seat': 959, 'episode': 960, 'retire': 961, 'do': 962, 'pizza': 963, 'worker': 964, 'theme': 965, 'throne': 966, 'private': 967, 'epa': 968, 'trouble': 969, 'families': 970, 'harassment': 971, 'perfectly': 972, 'horrify': 973, 'comey': 974, 'cry': 975, 'desperate': 976, 'hotel': 977, 'costume': 978, 'sean': 979, 'freak': 980, 'martin': 981, 'player': 982, 'budget': 983, 'neighbor': 984, 'jeff': 985, 'nra': 986, 'cook': 987, 'simple': 988, 'skin': 989, 'likely': 990, 'carry': 991, 'hilarious': 992, 'welcome': 993, 'rip': 994, 'actor': 995, 'cancel': 996, 'toward': 997, 'jesus': 998, 'disappoint': 999, 'hospital': 1000, 'pet': 1001, 'attend': 1002, 'seem': 1003, 'depress': 1004, 'probe': 1005, 'disgust': 1006, 'stock': 1007, 'thanksgiving': 1008, 'ebola': 1009, 'refugees': 1010, 'sing': 1011, 'airport': 1012, 'suit': 1013, 'debut': 1014, 'provide': 1015, 'detail': 1016, 'annoy': 1017, 'lgbtq': 1018, 'disney': 1019, 'ahead': 1020, 'image': 1021, 'hurt': 1022, 'bore': 1023, 'snl': 1024, 'dozens': 1025, 'science': 1026, 'deadly': 1027, 'residents': 1028, 'shape': 1029, 'declare': 1030, 'worse': 1031, 'manager': 1032, 'sea': 1033, 'ago': 1034, 'despite': 1035, 'nasa': 1036, 'brown': 1037, 'scandal': 1038, 'ignore': 1039, 'marijuana': 1040, 'please': 1041, 'chair': 1042, 'benefit': 1043, 'pledge': 1044, 'movies': 1045, 'documentary': 1046, 'truth': 1047, 'shake': 1048, 'sad': 1049, 'harvey': 1050, 'labor': 1051, 'approve': 1052, 'legal': 1053, 'putin': 1054, 'amid': 1055, 'east': 1056, 'embarrass': 1057, 'sales': 1058, 'mar': 1059, 'nurse': 1060, 'rape': 1061, 'note': 1062, 'museum': 1063, 'guest': 1064, 'turkey': 1065, 'else': 1066, 'also': 1067, 'brother': 1068, 'foreign': 1069, 'winter': 1070, 'immigrants': 1071, 'eric': 1072, 'four': 1073, 'loss': 1074, 'nearly': 1075, 'develop': 1076, 'gas': 1077, 'historical': 1078, 'mouth': 1079, 'commercial': 1080, 'youth': 1081, 'toddler': 1082, 'value': 1083, 'escape': 1084, 'customers': 1085, 'refugee': 1086, 'threat': 1087, 'committee': 1088, 'giant': 1089, 'deep': 1090, 'bed': 1091, 'beer': 1092, 'hundreds': 1093, 'project': 1094, 'ohio': 1095, 'wild': 1096, 'regret': 1097, 'scream': 1098, 'hang': 1099, 'among': 1100, 'san': 1101, 'scene': 1102, 'elderly': 1103, 'fda': 1104, 'olympic': 1105, 'source': 1106, 'daily': 1107, 'sweet': 1108, 'retirement': 1109, 'lawsuit': 1110, 'six': 1111, 'financial': 1112, 'average': 1113, 'network': 1114, 'design': 1115, 'term': 1116, 'killer': 1117, 'plant': 1118, 'capture': 1119, 'appear': 1120, 'activists': 1121, 'accord': 1122, 'dnc': 1123, 'course': 1124, 'gold': 1125, 'medical': 1126, 'golden': 1127, 'immigrant': 1128, 'grandmother': 1129, 'flag': 1130, 'popular': 1131, 'cash': 1132, 'mexico': 1133, 'determine': 1134, 'researchers': 1135, 'monday': 1136, 'primary': 1137, 'tech': 1138, 'kavanaugh': 1139, 'channel': 1140, 'rich': 1141, 'weeks': 1142, 'congressional': 1143, 'fit': 1144, 'jeb': 1145, 'sandwich': 1146, 'lack': 1147, 'event': 1148, 'fish': 1149, 'trap': 1150, 'bob': 1151, 'rush': 1152, 'extra': 1153, 'beach': 1154, 'paint': 1155, 'unable': 1156, 'grind': 1157, 'deserve': 1158, 'somehow': 1159, 'co': 1160, 'vatican': 1161, 'club': 1162, 'trial': 1163, 'lock': 1164, 'puerto': 1165, 'royal': 1166, 'cold': 1167, 'cia': 1168, 'account': 1169, 'b': 1170, 'rick': 1171, 'terrible': 1172, 'carpet': 1173, 'credit': 1174, 'station': 1175, 'tim': 1176, 'jail': 1177, 'dangerous': 1178, 'lunch': 1179, 'louis': 1180, 'silence': 1181, 'incredible': 1182, 'valentine': 1183, 'chuck': 1184, 'injure': 1185, 'size': 1186, 'yes': 1187, 'mix': 1188, 'ass': 1189, 'floor': 1190, 'praise': 1191, 'celebrity': 1192, 'empty': 1193, 'fix': 1194, 'mexican': 1195, 'discuss': 1196, 'jump': 1197, 'warren': 1198, 'archive': 1199, 'effort': 1200, 'depression': 1201, 'customer': 1202, 'truck': 1203, 'onto': 1204, 'include': 1205, 'senators': 1206, 'gap': 1207, 'elect': 1208, 'flood': 1209, 'survive': 1210, 'type': 1211, 'graduate': 1212, 'r': 1213, 'brand': 1214, 'jennifer': 1215, 'neighborhood': 1216, 'animals': 1217, 'afghanistan': 1218, 'civil': 1219, 'movement': 1220, 'nobody': 1221, 'weather': 1222, 'uber': 1223, 'era': 1224, 'stupid': 1225, 'jar': 1226, 'ceremony': 1227, 'sense': 1228, 'london': 1229, 'cities': 1230, 'tap': 1231, 'storm': 1232, 'delay': 1233, 'common': 1234, 'bully': 1235, 'sarah': 1236, 'fifth': 1237, 'alone': 1238, 'guilty': 1239, 'limit': 1240, 'virginia': 1241, 'convention': 1242, 'desk': 1243, 'stone': 1244, 'encourage': 1245, 'brief': 1246, 'pool': 1247, 'species': 1248, 'pregnancy': 1249, 'allege': 1250, 'naked': 1251, 'suddenly': 1252, 'subway': 1253, 'christie': 1254, 'guard': 1255, 'agent': 1256, 'cheese': 1257, 'anymore': 1258, 'rebel': 1259, 'diet': 1260, 'improve': 1261, 'lower': 1262, 'marco': 1263, 'criticize': 1264, 'contain': 1265, 'practice': 1266, 'stories': 1267, 'serve': 1268, 'strip': 1269, 'roy': 1270, 'toy': 1271, 'lawyer': 1272, 'justin': 1273, 'citizens': 1274, 'brain': 1275, 'rare': 1276, 'condemn': 1277, 'insurance': 1278, 'match': 1279, 'magical': 1280, 'frustrate': 1281, 'crazy': 1282, 'reject': 1283, 'freedom': 1284, 'meat': 1285, 'terror': 1286, 'theory': 1287, 'jim': 1288, 'airlines': 1289, 'w': 1290, 'site': 1291, 'insist': 1292, 'choice': 1293, 'process': 1294, 'quit': 1295, 'immediately': 1296, 'huckabee': 1297, 'controversial': 1298, 'soldier': 1299, 'fourth': 1300, 'survivors': 1301, 'suspend': 1302, 'exactly': 1303, 'greatest': 1304, 'donate': 1305, 'diversity': 1306, 'upcoming': 1307, 'window': 1308, 'page': 1309, 'grader': 1310, 'handle': 1311, 'forever': 1312, 'roundup': 1313, 'dick': 1314, 'lobby': 1315, 'breakfast': 1316, 'johnson': 1317, 'cars': 1318, 'member': 1319, 'dear': 1320, 'mcconnell': 1321, 'wave': 1322, 'bell': 1323, 'zuckerberg': 1324, 'writer': 1325, 'bid': 1326, 'france': 1327, 'cake': 1328, 'slowly': 1329, 'gender': 1330, 'file': 1331, 'crush': 1332, 'festival': 1333, 'modern': 1334, 'choose': 1335, 'mcdonald': 1336, 'foot': 1337, 'inform': 1338, 'boehner': 1339, 'drone': 1340, 'asian': 1341, 'prize': 1342, 'involve': 1343, 'weapons': 1344, 'french': 1345, 'ally': 1346, 'fat': 1347, 'article': 1348, 'partner': 1349, 'leak': 1350, 'moon': 1351, 'shift': 1352, 'failure': 1353, 'meal': 1354, 'present': 1355, 'within': 1356, 'authorities': 1357, 'guests': 1358, 'others': 1359, 'rid': 1360, 'condition': 1361, 'viral': 1362, 'smile': 1363, 'schumer': 1364, 'fair': 1365, 'santa': 1366, 'relieve': 1367, 'treatment': 1368, 'television': 1369, 'trust': 1370, 'pant': 1371, 'imagine': 1372, 'author': 1373, 'require': 1374, 'instagram': 1375, 'abandon': 1376, 'nail': 1377, 'recipes': 1378, 'ford': 1379, 'international': 1380, 'score': 1381, 'speed': 1382, 'singer': 1383, 'teachers': 1384, 'nominee': 1385, 'arrive': 1386, 'g': 1387, 'understand': 1388, 'iphone': 1389, 'user': 1390, 'theater': 1391, 'perform': 1392, 'explore': 1393, 'damage': 1394, 'torture': 1395, 'suffer': 1396, 'serious': 1397, 'debt': 1398, 'aim': 1399, 'trash': 1400, 'egg': 1401, 'per': 1402, 'domestic': 1403, 'sort': 1404, 'mock': 1405, 'jong': 1406, 'reduce': 1407, 'conflict': 1408, 'trevor': 1409, 'noah': 1410, 'pre': 1411, 'racism': 1412, 'universe': 1413, 'exist': 1414, 'island': 1415, 'hack': 1416, 'bin': 1417, 'safe': 1418, 'emergency': 1419, 'emerge': 1420, 'compare': 1421, 'bannon': 1422, 'bee': 1423, 'concert': 1424, 'access': 1425, 'mad': 1426, 'soccer': 1427, 'india': 1428, 'disaster': 1429, 'troll': 1430, 'muslims': 1431, 'alabama': 1432, 'catholic': 1433, 'gate': 1434, 'veteran': 1435, 'coworkers': 1436, 'passengers': 1437, 'rnc': 1438, 'solve': 1439, 'notice': 1440, 'habit': 1441, 'whatever': 1442, 'rap': 1443, 'society': 1444, 'asshole': 1445, 'quick': 1446, 'gain': 1447, 'lift': 1448, 'safety': 1449, 'smith': 1450, 'currently': 1451, 'parenthood': 1452, 'matt': 1453, 'critics': 1454, 'rate': 1455, 'absolutely': 1456, 'mitch': 1457, 'instead': 1458, 'mention': 1459, 'crew': 1460, 'finger': 1461, 'chase': 1462, 'grade': 1463, 'collapse': 1464, 'x': 1465, 'allegedly': 1466, 'trend': 1467, 'rico': 1468, 'endorse': 1469, 'comedy': 1470, 'annual': 1471, 'freeze': 1472, 'farm': 1473, 'research': 1474, 'trick': 1475, 'conference': 1476, 'shooter': 1477, 'decades': 1478, 'perry': 1479, 'respect': 1480, 'kanye': 1481, 'stranger': 1482, 'effect': 1483, 'ship': 1484, 'app': 1485, 'cheer': 1486, 'mall': 1487, 'century': 1488, 'sunday': 1489, 'cream': 1490, 'african': 1491, 'gather': 1492, 'tiny': 1493, 'appearance': 1494, 'burger': 1495, 'investigate': 1496, 'memorial': 1497, 'historic': 1498, 'israeli': 1499, 'funniest': 1500, 'violent': 1501, 'pride': 1502, 'snow': 1503, 'awesome': 1504, 'camera': 1505, 'ivanka': 1506, 'army': 1507, 'computer': 1508, 'anger': 1509, 'spill': 1510, 'victim': 1511, 'embrace': 1512, 'attention': 1513, 'commit': 1514, 'campus': 1515, 'peter': 1516, 'laugh': 1517, 'rep': 1518, 'large': 1519, 'shoe': 1520, 'nomination': 1521, 'propose': 1522, 'jay': 1523, 'zoo': 1524, 'senior': 1525, 'memory': 1526, 'tonight': 1527, 'product': 1528, 'ticket': 1529, 'vs': 1530, 'profile': 1531, 'outrage': 1532, 'ii': 1533, 'affect': 1534, 'map': 1535, 'olympics': 1536, 'missile': 1537, 'f': 1538, 'vice': 1539, 'gym': 1540, 'secrets': 1541, 'kate': 1542, 'healthcare': 1543, 'disease': 1544, 'piss': 1545, 'feed': 1546, 'weigh': 1547, 'total': 1548, 'direct': 1549, 'faith': 1550, 'funeral': 1551, 'influence': 1552, 'nude': 1553, 'baseball': 1554, 'relate': 1555, 'p': 1556, 'split': 1557, 'melania': 1558, 'tank': 1559, 'l': 1560, 'knock': 1561, 'threats': 1562, 'radio': 1563, 'generation': 1564, 'sale': 1565, 'spirit': 1566, 'hill': 1567, 'lee': 1568, 'democracy': 1569, 'exhaust': 1570, 'de': 1571, 'request': 1572, 'georgia': 1573, 'wage': 1574, 'journalist': 1575, 'jackson': 1576, 'nba': 1577, 'higher': 1578, 'shutdown': 1579, 'kushner': 1580, 'strategy': 1581, 'throughout': 1582, 'lifetime': 1583, 'current': 1584, 'economic': 1585, 'journalists': 1586, 'com': 1587, 'pressure': 1588, 'wing': 1589, 'along': 1590, 'busy': 1591, 'boost': 1592, 'porn': 1593, 'wine': 1594, 'refer': 1595, 'content': 1596, 'inequality': 1597, 'intelligence': 1598, 'profit': 1599, 'traffic': 1600, 'famous': 1601, 'victory': 1602, 'scout': 1603, 'convince': 1604, 'shower': 1605, 'sessions': 1606, 'sorry': 1607, 'cohen': 1608, 'misconduct': 1609, 'promote': 1610, 'smoke': 1611, 'journey': 1612, 'cuba': 1613, 'accident': 1614, 'transform': 1615, 'players': 1616, 'bond': 1617, 'corporate': 1618, 'patient': 1619, 'swear': 1620, 'slay': 1621, 'palestinian': 1622, 'document': 1623, 'footage': 1624, 'feet': 1625, 'reunite': 1626, 'defeat': 1627, 'kiss': 1628, 'tuesday': 1629, 'expand': 1630, 'grant': 1631, 'shark': 1632, 'taste': 1633, 'fine': 1634, 'attorney': 1635, 'reminder': 1636, 'row': 1637, 'exchange': 1638, 'laws': 1639, 'position': 1640, 'jack': 1641, 'largest': 1642, 'classic': 1643, 'repeat': 1644, 'kimmel': 1645, 'bunch': 1646, 'equality': 1647, 'strong': 1648, 'newspaper': 1649, 'hint': 1650, 'section': 1651, 'cabinet': 1652, 'barack': 1653, 'unsure': 1654, 'angry': 1655, 'heaven': 1656, 'songs': 1657, 'giuliani': 1658, 'stewart': 1659, 'tale': 1660, 'confuse': 1661, 'bizarre': 1662, 'grill': 1663, 'jury': 1664, 'field': 1665, 'raid': 1666, 'smart': 1667, 'mr': 1668, 'awkward': 1669, 'vision': 1670, 'creator': 1671, 'flu': 1672, 'creepy': 1673, 'minister': 1674, 'celebrities': 1675, 'display': 1676, 'serial': 1677, 'chain': 1678, 'technology': 1679, 'crimes': 1680, 'items': 1681, 'kansas': 1682, 'exercise': 1683, 'inauguration': 1684, 'studio': 1685, 'tribute': 1686, 'fuel': 1687, 'breast': 1688, 'richard': 1689, 'warm': 1690, 'mess': 1691, 'zone': 1692, 'flip': 1693, 'legislation': 1694, 'kitchen': 1695, 'acquire': 1696, 'leadership': 1697, 'expose': 1698, 'boat': 1699, 'round': 1700, 'spark': 1701, 'comfort': 1702, 'pose': 1703, 'haunt': 1704, 'wind': 1705, 'latino': 1706, 'conservative': 1707, 'coast': 1708, 'appeal': 1709, 'huffpollster': 1710, 'cheney': 1711, 'digital': 1712, 'lawyers': 1713, 'corden': 1714, 'easter': 1715, 'opinion': 1716, 'normal': 1717, 'jon': 1718, 'okay': 1719, 'beyond': 1720, 'ditch': 1721, 'animal': 1722, 'controversy': 1723, 'legend': 1724, 'sun': 1725, 'increasingly': 1726, 'christ': 1727, 'spread': 1728, 'later': 1729, 'title': 1730, 'wash': 1731, 'prime': 1732, 'mail': 1733, 'unaware': 1734, 'magic': 1735, 'recent': 1736, 'able': 1737, 'hawaii': 1738, 'criminal': 1739, 'seriously': 1740, 'own': 1741, 'nbc': 1742, 'coach': 1743, 'roommate': 1744, 'fraud': 1745, 'statue': 1746, 'fantasy': 1747, 'legacy': 1748, 'anxiety': 1749, 'adult': 1750, 'countries': 1751, 'potential': 1752, 'conservatives': 1753, 'headquarter': 1754, 'korean': 1755, 'hug': 1756, 'exclusive': 1757, 'hiv': 1758, 'solar': 1759, 'sight': 1760, 'viewers': 1761, 'boston': 1762, 'weinstein': 1763, 'dump': 1764, 'miles': 1765, 'owners': 1766, 'musical': 1767, 'population': 1768, 'princess': 1769, 'mysterious': 1770, 'meditation': 1771, 'ultimate': 1772, 'cute': 1773, 'edge': 1774, 'whale': 1775, 'quote': 1776, 'quiet': 1777, 'masturbate': 1778, 'plastic': 1779, 'mourn': 1780, 'hole': 1781, 'newly': 1782, 'either': 1783, 'funny': 1784, 'amy': 1785, 'skills': 1786, 'horrible': 1787, 'spoof': 1788, 'tony': 1789, 'dish': 1790, 'ocean': 1791, 'brothers': 1792, 'earn': 1793, 'quickly': 1794, 'invite': 1795, 'hunt': 1796, 'proof': 1797, 'broadway': 1798, 'v': 1799, 'object': 1800, 'wolf': 1801, 'adam': 1802, 'hampshire': 1803, 'actual': 1804, 'extend': 1805, 'sink': 1806, 'presidency': 1807, 'edition': 1808, 'sweat': 1809, 'creative': 1810, 'joy': 1811, 'terrorism': 1812, 'illegal': 1813, 'parade': 1814, 'bottle': 1815, 'sexist': 1816, 'colorado': 1817, 'carson': 1818, 'alert': 1819, 'charity': 1820, 'racial': 1821, 'alarm': 1822, 'netanyahu': 1823, 'activist': 1824, 'grave': 1825, 'islamic': 1826, 'urban': 1827, 'idiot': 1828, 'yoga': 1829, 'positive': 1830, 'kevin': 1831, 'vegas': 1832, 'impression': 1833, 'gear': 1834, 'toxic': 1835, 'inmates': 1836, 'graham': 1837, 'illinois': 1838, 'spy': 1839, 'michigan': 1840, 'count': 1841, 'facts': 1842, 'corner': 1843, 'spicer': 1844, 'orlando': 1845, 'heat': 1846, 'tape': 1847, 'previously': 1848, 'horror': 1849, 'alien': 1850, 'h': 1851, 'loud': 1852, 'sexually': 1853, 'gps': 1854, 'breathe': 1855, 'ones': 1856, 'sister': 1857, 'founder': 1858, 'cell': 1859, 'foundation': 1860, 'damn': 1861, 'surge': 1862, 'information': 1863, 'exit': 1864, 'africa': 1865, 'artists': 1866, 'dr': 1867, 'fact': 1868, 'happiness': 1869, 'highlight': 1870, 'premiere': 1871, 'mask': 1872, 'chrissy': 1873, 'lawmakers': 1874, 'favor': 1875, 'weak': 1876, 'pile': 1877, 'milk': 1878, 'wrap': 1879, 'describe': 1880, 'clock': 1881, 'stream': 1882, 'council': 1883, 'repeatedly': 1884, 'beyonc': 1885, 'argument': 1886, 'nick': 1887, 'tool': 1888, 'epidemic': 1889, 'pain': 1890, 'arizona': 1891, 'endanger': 1892, 'apart': 1893, 'charlottesville': 1894, 'pitch': 1895, 'troop': 1896, 'cruise': 1897, 'several': 1898, 'plot': 1899, 'devos': 1900, 'soul': 1901, 'dirty': 1902, 'statement': 1903, 'apology': 1904, 'recognize': 1905, 'contact': 1906, 'pot': 1907, 'rent': 1908, 'advocate': 1909, 'impress': 1910, 'net': 1911, 'impact': 1912, 'saw': 1913, 'closer': 1914, 'progressive': 1915, 'z': 1916, 'jewish': 1917, 'thrill': 1918, 'businesses': 1919, 'van': 1920, 'designer': 1921, 'english': 1922, 'literally': 1923, 'zero': 1924, 'criticism': 1925, 'mystery': 1926, 'amount': 1927, 'factory': 1928, 'intend': 1929, 'silver': 1930, 'conspiracy': 1931, 'truly': 1932, 'taco': 1933, 'circle': 1934, 'marvel': 1935, 'fully': 1936, 'contract': 1937, 'tackle': 1938, 'poster': 1939, 'scalia': 1940, 'behavior': 1941, 'sum': 1942, 'highway': 1943, 'pen': 1944, 'tower': 1945, 'kylie': 1946, 'ray': 1947, 'teigen': 1948, 'fry': 1949, 'staffers': 1950, 'nervous': 1951, 'anchor': 1952, 'officially': 1953, 'detroit': 1954, 'indian': 1955, 'divide': 1956, 'successful': 1957, 'bridge': 1958, 'anthem': 1959, 'loan': 1960, 'burst': 1961, 'mirror': 1962, 'clip': 1963, 'available': 1964, 'experiment': 1965, 'dakota': 1966, 'tea': 1967, 'tall': 1968, 'roger': 1969, 'steven': 1970, 'marine': 1971, 'switch': 1972, 'complain': 1973, 'opportunity': 1974, 'code': 1975, 'anderson': 1976, 'cooper': 1977, 'empower': 1978, 'mission': 1979, 'fame': 1980, 'lucky': 1981, 'punch': 1982, 'gross': 1983, 'measure': 1984, 'rachel': 1985, 'therapy': 1986, 'makeup': 1987, 'weed': 1988, 'suck': 1989, 'friendly': 1990, 'recover': 1991, 'equal': 1992, 'master': 1993, 'pretend': 1994, 'incident': 1995, 'argue': 1996, 'addiction': 1997, 'harder': 1998, 'thomas': 1999, 'q': 2000, 'web': 2001, 'winner': 2002, 'natural': 2003, 'frantically': 2004, 'humanity': 2005, 'original': 2006, 'upset': 2007, 'plead': 2008, 'moments': 2009, 'bottom': 2010, 'tattoo': 2011, 'portrait': 2012, 'hammer': 2013, 'novel': 2014, 'flavor': 2015, 'elections': 2016, 'stamp': 2017, 'summit': 2018, 'twin': 2019, 'wheel': 2020, 'lade': 2021, 'interior': 2022, 'speaker': 2023, 'davis': 2024, 'upon': 2025, 'toilet': 2026, 'blind': 2027, 'penis': 2028, 'rex': 2029, 'ed': 2030, 'delicious': 2031, 'slow': 2032, 'editor': 2033, 'pair': 2034, 'tough': 2035, 'afghan': 2036, 'publish': 2037, 'fee': 2038, 'manage': 2039, 'lake': 2040, 'comedian': 2041, 'europe': 2042, 'dads': 2043, 'miller': 2044, 'heroin': 2045, 'younger': 2046, 'disorder': 2047, 'saturday': 2048, 'mitt': 2049, 'british': 2050, 'wisconsin': 2051, 'closet': 2052, 'alive': 2053, 'seth': 2054, 'produce': 2055, 'youtube': 2056, 'transition': 2057, 'afford': 2058, 'text': 2059, 'spray': 2060, 'rudy': 2061, 'mentally': 2062, 'rank': 2063, 'mid': 2064, 'wildlife': 2065, 'bible': 2066, 'inner': 2067, 'actress': 2068, 'bull': 2069, 'confidence': 2070, 'barely': 2071, 'streets': 2072, 'britney': 2073, 'ancient': 2074, 'decline': 2075, 'lena': 2076, 'walker': 2077, 'poverty': 2078, 'professor': 2079, 'separate': 2080, 'valley': 2081, 'puppy': 2082, 'constitution': 2083, 'responsible': 2084, 'due': 2085, 'relief': 2086, 'pentagon': 2087, 'restore': 2088, 'policies': 2089, 'bust': 2090, 'melt': 2091, 'larry': 2092, 'con': 2093, 'carter': 2094, 'humiliate': 2095, 'jerry': 2096, 'directly': 2097, 'daniels': 2098, 'cite': 2099, 'amendment': 2100, 'capable': 2101, 'neil': 2102, 'globes': 2103, 'passenger': 2104, 'japanese': 2105, 'perspective': 2106, 'hunger': 2107, 'la': 2108, 'anyway': 2109, 'ukraine': 2110, 'brazil': 2111, 'adopt': 2112, 'william': 2113, 'patients': 2114, 'pennsylvania': 2115, 'quality': 2116, 'will': 2117, 'routine': 2118, 'neck': 2119, 'entertainment': 2120, 'inch': 2121, 'smell': 2122, 'gaza': 2123, 'lord': 2124, 'cosby': 2125, 'duty': 2126, 'path': 2127, 'guess': 2128, 'loser': 2129, 'sweep': 2130, 'oh': 2131, 'shout': 2132, 'ellen': 2133, 'skip': 2134, 'outbreak': 2135, 'ambassador': 2136, 'express': 2137, 'pour': 2138, 'rather': 2139, 'assume': 2140, 'newborn': 2141, 'rob': 2142, 'politicians': 2143, 'iraqi': 2144, 'shadow': 2145, 'shelter': 2146, 'teenage': 2147, 'bat': 2148, 'wilson': 2149, 'engagement': 2150, 'tiger': 2151, 'priest': 2152, 'dare': 2153, 'miracle': 2154, 'couch': 2155, 'maybe': 2156, 'maher': 2157, 'betsy': 2158, 'painful': 2159, 'pruitt': 2160, 'kaine': 2161, 'comic': 2162, 'nominate': 2163, 'tout': 2164, 'fallon': 2165, 'exhibit': 2166, 'consume': 2167, 'winners': 2168, 'garden': 2169, 'jessica': 2170, 'production': 2171, 'starbucks': 2172, 'surgery': 2173, 'heal': 2174, 'german': 2175, 'league': 2176, 'drama': 2177, 'migrants': 2178, 'monster': 2179, 'awareness': 2180, 'thoughts': 2181, 'confederate': 2182, 'bruce': 2183, 'estate': 2184, 'daughters': 2185, 'meghan': 2186, 'transportation': 2187, 'hook': 2188, 'collection': 2189, 'knife': 2190, 'copy': 2191, 'reflect': 2192, 'cheap': 2193, 'connect': 2194, 'genius': 2195, 'ballot': 2196, 'candy': 2197, 'flash': 2198, 'slide': 2199, 'toss': 2200, 'epic': 2201, 'mount': 2202, 'flame': 2203, 'ghost': 2204, 'religion': 2205, 'oppose': 2206, 'gaga': 2207, 'environment': 2208, 'false': 2209, 'coverage': 2210, 'conscious': 2211, 'rant': 2212, 'rain': 2213, 'communities': 2214, 'trace': 2215, 'lone': 2216, 'australia': 2217, 'fruit': 2218, 'manafort': 2219, 'execute': 2220, 'jordan': 2221, 'glad': 2222, 'qaeda': 2223, 'detain': 2224, 'dollar': 2225, 'slightly': 2226, 'jet': 2227, 'capital': 2228, 'meals': 2229, 'income': 2230, 'trail': 2231, 'deaths': 2232, 'wednesday': 2233, 'thursday': 2234, 'aunt': 2235, 'butt': 2236, 'status': 2237, 'lawn': 2238, 'jersey': 2239, 'iconic': 2240, 'everywhere': 2241, 'tillerson': 2242, 'basketball': 2243, 'strangers': 2244, 'electric': 2245, 'volunteer': 2246, 'pac': 2247, 'ceiling': 2248, 'prefer': 2249, 'personality': 2250, 'potter': 2251, 'chill': 2252, 'childhood': 2253, 'supply': 2254, 'parody': 2255, 'strap': 2256, 'hackers': 2257, 'ill': 2258, 'aide': 2259, 'goddamn': 2260, 'las': 2261, 'bold': 2262, 'grammys': 2263, 'los': 2264, 'ethics': 2265, 'academy': 2266, 'december': 2267, 'japan': 2268, 'affair': 2269, 'strength': 2270, 'toll': 2271, 'agents': 2272, 'dunham': 2273, 'alex': 2274, 'brace': 2275, 'stance': 2276, 'bone': 2277, 'gorsuch': 2278, 'gorgeous': 2279, 'bike': 2280, 'comfortable': 2281, 'jason': 2282, 'actors': 2283, 'glimpse': 2284, 'difficult': 2285, 'contest': 2286, 'oregon': 2287, 'nobel': 2288, 'terrorist': 2289, 'prayers': 2290, 'plus': 2291, 'disable': 2292, 'shitty': 2293, 'gore': 2294, 'waitress': 2295, 'charles': 2296, 'prescription': 2297, 'survivor': 2298, 'dumb': 2299, 'patrick': 2300, 'package': 2301, 'knowledge': 2302, 'golf': 2303, 'latinos': 2304, 'beloved': 2305, 'medicine': 2306, 'whose': 2307, 'vomit': 2308, 'usa': 2309, 'print': 2310, 'bath': 2311, 'angel': 2312, 'scramble': 2313, 'overweight': 2314, 'minnesota': 2315, 'uk': 2316, 'plunge': 2317, 'gov': 2318, 'bride': 2319, 'capitol': 2320, 'feminist': 2321, 'heartbreaking': 2322, 'twist': 2323, 'approach': 2324, 'friendship': 2325, 'pathetic': 2326, 'excuse': 2327, 'register': 2328, 'gunman': 2329, 'dallas': 2330, 'loose': 2331, 'eve': 2332, 'proposal': 2333, 'drill': 2334, 'importance': 2335, 'grand': 2336, 'eu': 2337, 'reaction': 2338, 'identity': 2339, 'revolution': 2340, 'advance': 2341, 'central': 2342, 'lesbian': 2343, 'scar': 2344, 'meyers': 2345, 'background': 2346, 'alzheimer': 2347, 'rumor': 2348, 'smash': 2349, 'bikini': 2350, 'essay': 2351, 'uncover': 2352, 'thankful': 2353, 'chemical': 2354, 'andrew': 2355, 'entirely': 2356, 'district': 2357, 'millennials': 2358, 'fcc': 2359, 'panel': 2360, 'beg': 2361, 'pray': 2362, 'workout': 2363, 'grope': 2364, 'highly': 2365, 'sexy': 2366, 'italy': 2367, 'grandfather': 2368, 'colin': 2369, 'version': 2370, 'dangers': 2371, 'outfit': 2372, 'float': 2373, 'insane': 2374, 'disappear': 2375, 'australian': 2376, 'spear': 2377, 'palin': 2378, 'kit': 2379, 'ability': 2380, 'resistance': 2381, 'goodbye': 2382, 'sniper': 2383, 'colleges': 2384, 'grateful': 2385, 'taliban': 2386, 'rand': 2387, 'bolton': 2388, 'deeply': 2389, 'balance': 2390, 'organize': 2391, 'extremely': 2392, 'clarify': 2393, 'finale': 2394, 'button': 2395, 'cyber': 2396, 'surround': 2397, 'delete': 2398, 'difference': 2399, 'philadelphia': 2400, 'workplace': 2401, 'relationships': 2402, 'nato': 2403, 'freshman': 2404, 'secretly': 2405, 'progress': 2406, 'load': 2407, 'lawmaker': 2408, 'dominate': 2409, 'collect': 2410, 'erupt': 2411, 'situation': 2412, 'beef': 2413, 'spider': 2414, 'greece': 2415, 'grace': 2416, 'cashier': 2417, 'curb': 2418, 'fresh': 2419, 'approval': 2420, 'seattle': 2421, 'sen': 2422, 'oliver': 2423, 'microsoft': 2424, 'seaworld': 2425, 'snack': 2426, 'minimum': 2427, 'headline': 2428, 'oklahoma': 2429, 'italian': 2430, 'podcast': 2431, 'unless': 2432, 'constantly': 2433, 'organization': 2434, 'arabia': 2435, 'unexpected': 2436, 'adviser': 2437, 'samantha': 2438, 'shame': 2439, 'bachelor': 2440, 'engage': 2441, 'execution': 2442, 'ads': 2443, 'regular': 2444, 'captain': 2445, 'intern': 2446, 'effective': 2447, 'shell': 2448, 'drake': 2449, 'fitness': 2450, 'allen': 2451, 'corruption': 2452, 'obsess': 2453, 'navy': 2454, 'liberty': 2455, 'therapist': 2456, 'cap': 2457, 'reilly': 2458, 'baldwin': 2459, 'river': 2460, 'zika': 2461, 'miami': 2462, 'reunion': 2463, 'announcement': 2464, 'stab': 2465, 'afraid': 2466, 'soda': 2467, 'photographer': 2468, 'phase': 2469, 'miranda': 2470, 'orange': 2471, 'minority': 2472, 'longtime': 2473, 'platform': 2474, 'bedroom': 2475, 'remark': 2476, 'cyrus': 2477, 'draft': 2478, 'surveillance': 2479, 'hypocrisy': 2480, 'spin': 2481, 'previous': 2482, 'cuomo': 2483, 'dave': 2484, 'language': 2485, 'period': 2486, 'cow': 2487, 'bacon': 2488, 'commercials': 2489, 'pipeline': 2490, 'strange': 2491, 'teeth': 2492, 'february': 2493, 'options': 2494, 'pepper': 2495, 'impossible': 2496, 'angeles': 2497, 'react': 2498, 'expert': 2499, 'forgive': 2500, 'consumer': 2501, 'cannot': 2502, 'rough': 2503, 'cave': 2504, 'awful': 2505, 'baltimore': 2506, 'connection': 2507, 'yemen': 2508, 'independence': 2509, 'lottery': 2510, 'finance': 2511, 'settle': 2512, 'feud': 2513, 'anonymous': 2514, 'kennedy': 2515, 'doubt': 2516, 'holy': 2517, 'identify': 2518, 'engineer': 2519, 'gilmore': 2520, 'unemployed': 2521, 'markle': 2522, 'nancy': 2523, 'swim': 2524, 'glow': 2525, 'kfc': 2526, 'cure': 2527, 'heroes': 2528, 'sam': 2529, 'elon': 2530, 'musk': 2531, 'billy': 2532, 'satisfy': 2533, 'surface': 2534, 'indict': 2535, 'brooklyn': 2536, 'opioid': 2537, 'hometown': 2538, 'memoir': 2539, 'string': 2540, 'crawl': 2541, 'kentucky': 2542, 'pardon': 2543, 'testimony': 2544, 'nsfw': 2545, 'iranian': 2546, 'pilot': 2547, 'achieve': 2548, 'quite': 2549, 'dreamers': 2550, 'offend': 2551, 'stadium': 2552, 'pocket': 2553, 'attractive': 2554, 'shred': 2555, 'dvd': 2556, 'coat': 2557, 'april': 2558, 'loom': 2559, 'label': 2560, 'halt': 2561, 'calm': 2562, 'fence': 2563, 'inmate': 2564, 'chart': 2565, 'britain': 2566, 'discrimination': 2567, 'canada': 2568, 'curry': 2569, 'assistant': 2570, 'duck': 2571, 'lazy': 2572, 'howard': 2573, 'gingrich': 2574, 'drivers': 2575, 'gala': 2576, 'be': 2577, 'root': 2578, 'mood': 2579, 'independent': 2580, 'lamar': 2581, 'cage': 2582, 'sixth': 2583, 'nightmare': 2584, 'caitlyn': 2585, 'predict': 2586, 'veterans': 2587, 'surgeon': 2588, 'hamilton': 2589, 'plea': 2590, 'billionaire': 2591, 'apply': 2592, 'cleveland': 2593, 'furious': 2594, 'evacuate': 2595, 'mississippi': 2596, 'adele': 2597, 'recovery': 2598, 'parkland': 2599, 'nature': 2600, 'tomorrow': 2601, 'solution': 2602, 'expensive': 2603, 'regularly': 2604, 'assad': 2605, 'endorsement': 2606, 'overcome': 2607, 'rice': 2608, 'random': 2609, 'affordable': 2610, 'monitor': 2611, 'necessary': 2612, 'alan': 2613, 'crackdown': 2614, 'brag': 2615, 'slave': 2616, 'defiant': 2617, 'jake': 2618, 'alternative': 2619, 'donors': 2620, 'snake': 2621, 'wreck': 2622, 'aside': 2623, 'bash': 2624, 'shave': 2625, 'hbo': 2626, 'galaxy': 2627, 'census': 2628, 'consumers': 2629, 'negative': 2630, 'purpose': 2631, 'solo': 2632, 'affleck': 2633, 'muhammad': 2634, 'ali': 2635, 'poison': 2636, 'dread': 2637, 'beard': 2638, 'luther': 2639, 'rapper': 2640, 'range': 2641, 'basic': 2642, 'sterling': 2643, 'backyard': 2644, 'grammy': 2645, 'archaeologists': 2646, 'fundraise': 2647, 'lesson': 2648, 'square': 2649, 'massacre': 2650, 'arctic': 2651, 'dry': 2652, 'bigger': 2653, 'abc': 2654, 'agenda': 2655, 'uncle': 2656, 'ok': 2657, 'goals': 2658, 'gang': 2659, 'mostly': 2660, 'felt': 2661, 'illness': 2662, 'except': 2663, 'astronomers': 2664, 'journal': 2665, 'grandson': 2666, 'backlash': 2667, 'deputy': 2668, 'screw': 2669, 'wide': 2670, 'recently': 2671, 'eliminate': 2672, 'mary': 2673, 'november': 2674, 'delivery': 2675, 'tourist': 2676, 'fate': 2677, 'stormy': 2678, 'growth': 2679, 'wet': 2680, 'squad': 2681, 'scientist': 2682, 'nostalgic': 2683, 'roof': 2684, 'politician': 2685, 'commencement': 2686, 'bet': 2687, 'confront': 2688, 'airline': 2689, 'reporters': 2690, 'suspicious': 2691, 'yell': 2692, 'flee': 2693, 'hannity': 2694, 'triple': 2695, 'prosecutor': 2696, 'johnny': 2697, 'billions': 2698, 'shots': 2699, 'champion': 2700, 'demographic': 2701, 'carbon': 2702, 'climb': 2703, 'spice': 2704, 'clerk': 2705, 'robot': 2706, 'homeland': 2707, 'nypd': 2708, 'interrupt': 2709, 'chocolate': 2710, 'wow': 2711, 'brad': 2712, 'sham': 2713, 'tragedy': 2714, 'crave': 2715, 'earthquake': 2716, 'grieve': 2717, 'worldwide': 2718, 'bean': 2719, 'fool': 2720, 'easier': 2721, 'briefly': 2722, 'renew': 2723, 'combat': 2724, 'construction': 2725, 'producers': 2726, 'drown': 2727, 'witness': 2728, 'county': 2729, 'ann': 2730, 'legalize': 2731, 'virus': 2732, 'hearts': 2733, 'lane': 2734, 'cousin': 2735, 'graphic': 2736, 'hip': 2737, 'generations': 2738, 'executives': 2739, 'shade': 2740, 'bother': 2741, 'buck': 2742, 'products': 2743, 'addict': 2744, 'detective': 2745, 'lawrence': 2746, 'deem': 2747, 'traditional': 2748, 'somewhere': 2749, 'phrase': 2750, 'drain': 2751, 'nationwide': 2752, 'grab': 2753, 'sneak': 2754, 'bomber': 2755, 'destruction': 2756, 'bang': 2757, 'anne': 2758, 'roast': 2759, 'frank': 2760, 'kitten': 2761, 'francisco': 2762, 'drawer': 2763, 'whisper': 2764, 'kasich': 2765, 'sketch': 2766, 'snap': 2767, 'july': 2768, 'resort': 2769, 'daddy': 2770, 'disturb': 2771, 'supporter': 2772, 'ron': 2773, 'explosion': 2774, 'desperately': 2775, 'cbs': 2776, 'delight': 2777, 'starve': 2778, 'pin': 2779, 'attract': 2780, 'mate': 2781, 'complicate': 2782, 'donation': 2783, 'balloon': 2784, 'pace': 2785, 'gray': 2786, 'guitar': 2787, 'chew': 2788, 'gum': 2789, 'miley': 2790, 'bind': 2791, 'nap': 2792, 'grandpa': 2793, 'brilliant': 2794, 'mug': 2795, 'spielberg': 2796, 'atlanta': 2797, 'evolution': 2798, 'january': 2799, 'streep': 2800, 'startup': 2801, 'agency': 2802, 'compliment': 2803, 'warner': 2804, 'curse': 2805, 'relax': 2806, 'factor': 2807, 'audio': 2808, 'montana': 2809, 'feminism': 2810, 'foods': 2811, 'location': 2812, 'compete': 2813, 'salad': 2814, 'robin': 2815, 'suppose': 2816, 'pit': 2817, 'reagan': 2818, 'firm': 2819, 'timberlake': 2820, 'sauce': 2821, 'lindsey': 2822, 'chamber': 2823, 'obviously': 2824, 'goal': 2825, 'kendrick': 2826, 'castle': 2827, 'widow': 2828, 'laptop': 2829, 'resolution': 2830, 'garner': 2831, 'reference': 2832, 'liberal': 2833, 'mountain': 2834, 'lion': 2835, 'pete': 2836, 'writers': 2837, 'minor': 2838, 'settlement': 2839, 'grandparents': 2840, 'ail': 2841, 'insult': 2842, 'molest': 2843, 'chaos': 2844, 'brutal': 2845, 'carly': 2846, 'koch': 2847, 'invent': 2848, 'anthony': 2849, 'sear': 2850, 'nervously': 2851, 'craft': 2852, 'twice': 2853, 'sole': 2854, 'commission': 2855, 'injury': 2856, 'definitely': 2857, 'acceptance': 2858, 'selfie': 2859, 'spell': 2860, 'brian': 2861, 'remote': 2862, 'sons': 2863, 'mine': 2864, 'flynn': 2865, 'simpson': 2866, 'openly': 2867, 'existence': 2868, 'peer': 2869, 'innocent': 2870, 'silent': 2871, 'joan': 2872, 'honest': 2873, 'pelosi': 2874, 'pump': 2875, 'eagle': 2876, 'civilians': 2877, 'chef': 2878, 'pure': 2879, 'tesla': 2880, 'bieber': 2881, 'pitt': 2882, 'nazi': 2883, 'cambridge': 2884, 'wildfire': 2885, 'lebron': 2886, 'everybody': 2887, 'uncomfortable': 2888, 'houston': 2889, 'banana': 2890, 'define': 2891, 'turkish': 2892, 'prisoners': 2893, 'riot': 2894, 'option': 2895, 'smaller': 2896, 'dorm': 2897, 'chant': 2898, 'canadian': 2899, 'visible': 2900, 'breakup': 2901, 'flint': 2902, 'preserve': 2903, 'crown': 2904, 'devastate': 2905, 'heroic': 2906, 'sober': 2907, 'agreement': 2908, 'discovery': 2909, 'videos': 2910, 'shrimp': 2911, 'pig': 2912, 'laura': 2913, 'multi': 2914, 'underwear': 2915, 'migrant': 2916, 'scientific': 2917, 'harass': 2918, 'valuable': 2919, 'nominations': 2920, 'photograph': 2921, 'unarm': 2922, 'daniel': 2923, 'terrorists': 2924, 'sadly': 2925, 'ken': 2926, 'palestinians': 2927, 'registry': 2928, 'casually': 2929, 'seize': 2930, 'grief': 2931, 'newest': 2932, 'ten': 2933, 'ugly': 2934, 'professional': 2935, 'holocaust': 2936, 'indiana': 2937, 'kidnap': 2938, 'disabilities': 2939, 'lin': 2940, 'stretch': 2941, 'bias': 2942, 'complex': 2943, 'franken': 2944, 'casual': 2945, 'pat': 2946, 'wheelchair': 2947, 'pal': 2948, 'stomach': 2949, 'woods': 2950, 'myanmar': 2951, 'rohingya': 2952, 'mortgage': 2953, 'ladies': 2954, 'obese': 2955, 'asleep': 2956, 'awaken': 2957, 'deploy': 2958, 'library': 2959, 'meryl': 2960, 'math': 2961, 'hilariously': 2962, 'harm': 2963, 'vietnam': 2964, 'custody': 2965, 'wire': 2966, 'cigarette': 2967, 'doors': 2968, 'urine': 2969, 'lincoln': 2970, 'jerusalem': 2971, 'western': 2972, 'fi': 2973, 'rocket': 2974, 'opposition': 2975, 'attendees': 2976, 'physical': 2977, 'sudden': 2978, 'recap': 2979, 'sexism': 2980, 'script': 2981, 'leg': 2982, 'stall': 2983, 'grocery': 2984, 'empire': 2985, 'stir': 2986, 'greet': 2987, 'tourists': 2988, 'khloe': 2989, 'pacific': 2990, 'cable': 2991, 'bitch': 2992, 'explode': 2993, 'represent': 2994, 'conclude': 2995, 'usher': 2996, 'classmate': 2997, 'native': 2998, 'fiorina': 2999, 'pills': 3000, 'vaccine': 3001, 'survey': 3002, 'sheriff': 3003, 'bubble': 3004, 'stunt': 3005, 'blake': 3006, 'windows': 3007, 'up': 3008, 'exact': 3009, 'infant': 3010, 'alcohol': 3011, 'tearful': 3012, 'disclose': 3013, 'graduation': 3014, 'undocumented': 3015, 'populace': 3016, 'efforts': 3017, 'european': 3018, 'multiple': 3019, 'menu': 3020, 'educate': 3021, 'conduct': 3022, 'moral': 3023, 'garbage': 3024, 'farmers': 3025, 'tunnel': 3026, 'midnight': 3027, 'siblings': 3028, 'decade': 3029, 'bastard': 3030, 'rivers': 3031, 'distance': 3032, 'abrams': 3033, 'firefighter': 3034, 'events': 3035, 'germany': 3036, 'autism': 3037, 'stereotype': 3038, 'sanction': 3039, 'adventure': 3040, 'wound': 3041, 'smartphone': 3042, 'patrons': 3043, 'chip': 3044, 'viewer': 3045, 'responsibility': 3046, 'association': 3047, 'spanish': 3048, 'grey': 3049, 'testify': 3050, 'appoint': 3051, 'scary': 3052, 'sky': 3053, 'cigarettes': 3054, 'log': 3055, 'resolutions': 3056, 'bankrupt': 3057, 'mouse': 3058, 'nelson': 3059, 'evil': 3060, 'initiative': 3061, 'dive': 3062, 'maryland': 3063, 'satellite': 3064, 'memo': 3065, 'jazz': 3066, 'neutrality': 3067, 'reopen': 3068, 'botch': 3069, 'attendant': 3070, 'northern': 3071, 'sometimes': 3072, 'irma': 3073, 'consecutive': 3074, 'airplane': 3075, 'vp': 3076, 'cartoon': 3077, 'evolve': 3078, 'cub': 3079, 'bury': 3080, 'privacy': 3081, 'spotlight': 3082, 'seal': 3083, 'islam': 3084, 'boycott': 3085, 'reward': 3086, 'roller': 3087, 'overwhelm': 3088, 'corn': 3089, 'choke': 3090, 'correct': 3091, 'louisiana': 3092, 'nsa': 3093, 'motion': 3094, 'plate': 3095, 'venezuela': 3096, 'justify': 3097, 'resume': 3098, 'emma': 3099, 'reid': 3100, 'towards': 3101, 'makeover': 3102, 'creep': 3103, 'billboard': 3104, 'village': 3105, 'bleed': 3106, 'pursue': 3107, 'maintain': 3108, 'jill': 3109, 'dig': 3110, 'orleans': 3111, 'confident': 3112, 'tampon': 3113, 'spain': 3114, 'katy': 3115, 'classify': 3116, 'manuel': 3117, 'critical': 3118, 'abroad': 3119, 'daca': 3120, 'rapidly': 3121, 'carey': 3122, 'obesity': 3123, 'corporation': 3124, 'rihanna': 3125, 'mile': 3126, 'horrific': 3127, 'cheat': 3128, 'toe': 3129, 'citizen': 3130, 'colleagues': 3131, 'constant': 3132, 'nose': 3133, 'fatal': 3134, 'palm': 3135, 'nonsense': 3136, 'taunt': 3137, 'shoulder': 3138, 'incredibly': 3139, 'irish': 3140, 'hobby': 3141, 'charlotte': 3142, 'butter': 3143, 'caucus': 3144, 'arab': 3145, 'merkel': 3146, 'greek': 3147, 'kaepernick': 3148, 'remake': 3149, 'readers': 3150, 'treasury': 3151, 'dems': 3152, 'laser': 3153, 'throat': 3154, 'wendy': 3155, 'bacteria': 3156, 'recount': 3157, 'invade': 3158, 'midterms': 3159, 'kellyanne': 3160, 'panda': 3161, 'unclear': 3162, 'wildly': 3163, 'prep': 3164, 'ease': 3165, 'extreme': 3166, 'nuke': 3167, 'soap': 3168, 'alaska': 3169, 'towel': 3170, 'confirmation': 3171, 'lynch': 3172, 'resident': 3173, 'vulnerable': 3174, 'sacrifice': 3175, 'lonely': 3176, 'overturn': 3177, 'cdc': 3178, 'bread': 3179, 'turnout': 3180, 'revival': 3181, 'heavy': 3182, 'awkwardly': 3183, 'ultra': 3184, 'nations': 3185, 'spouse': 3186, 'dip': 3187, 'rover': 3188, 'monument': 3189, 'certificate': 3190, 'staffer': 3191, 'hopeful': 3192, 'rupaul': 3193, 'icon': 3194, 'advertise': 3195, 'rename': 3196, 'damon': 3197, 'fiction': 3198, 'weekly': 3199, 'op': 3200, 'june': 3201, 'revenge': 3202, 'uniform': 3203, 'eight': 3204, 'sunglasses': 3205, 'npr': 3206, 'specifically': 3207, 'oval': 3208, 'memories': 3209, 'charlie': 3210, 'hut': 3211, 'mini': 3212, 'clue': 3213, 'depot': 3214, 'jews': 3215, 'democrat': 3216, 'sigh': 3217, 'businessman': 3218, 'craig': 3219, 'encounter': 3220, 'josh': 3221, 'patron': 3222, 'soak': 3223, 'soup': 3224, 'awake': 3225, 'successfully': 3226, 'clooney': 3227, 'signal': 3228, 'accusations': 3229, 'neglect': 3230, 'lab': 3231, 'roberts': 3232, 'infrastructure': 3233, 'prank': 3234, 'fantasize': 3235, 'instructor': 3236, 'lover': 3237, 'deportation': 3238, 'bucket': 3239, 'craze': 3240, 'gina': 3241, 'curious': 3242, 'brady': 3243, 'tradition': 3244, 'dan': 3245, 'caf': 3246, 'aisle': 3247, 'brexit': 3248, 'beneath': 3249, 'wrestle': 3250, 'fisher': 3251, 'cd': 3252, 'invest': 3253, 'chick': 3254, 'cooler': 3255, 'seniors': 3256, 'russians': 3257, 'garage': 3258, 'secure': 3259, 'tragic': 3260, 'austin': 3261, 'swing': 3262, 'serena': 3263, 'license': 3264, 'selves': 3265, 'fellow': 3266, 'humor': 3267, 'chelsea': 3268, 'virgin': 3269, 'yo': 3270, 'quiz': 3271, 'sting': 3272, 'frame': 3273, 'entry': 3274, 'reboot': 3275, 'halfway': 3276, 'schedule': 3277, 'tennis': 3278, 'stumble': 3279, 'dame': 3280, 'replacement': 3281, 'pumpkin': 3282, 'prom': 3283, 'select': 3284, 'abusive': 3285, 'emmy': 3286, 'violate': 3287, 'seed': 3288, 'reverse': 3289, 'hail': 3290, 'impressive': 3291, 'rage': 3292, 'slur': 3293, 'helicopter': 3294, 'flower': 3295, 'kristen': 3296, 'obsession': 3297, 'operate': 3298, 'greater': 3299, 'el': 3300, 'conversations': 3301, 'doj': 3302, 'restrictions': 3303, 'slip': 3304, 'boo': 3305, 'pervert': 3306, 'wipe': 3307, 'curtain': 3308, 'christopher': 3309, 'charleston': 3310, 'bachelorette': 3311, 'vet': 3312, 'turtle': 3313, 'merger': 3314, 'mill': 3315, 'carefully': 3316, 'scam': 3317, 'ridiculous': 3318, 'thompson': 3319, 'salesman': 3320, 'jacket': 3321, 'expectations': 3322, 'missouri': 3323, 'beyonce': 3324, 'relations': 3325, 'absence': 3326, 'strongly': 3327, 'lame': 3328, 'reader': 3329, 'mainstream': 3330, 'lobster': 3331, 'active': 3332, 'bowie': 3333, 'breakthrough': 3334, 'standards': 3335, 'ash': 3336, 'historians': 3337, 'larger': 3338, 'agriculture': 3339, 'russell': 3340, 'iron': 3341, 'punish': 3342, 'thumb': 3343, 'gratitude': 3344, 'swimsuit': 3345, 'creators': 3346, 'easily': 3347, 'resist': 3348, 'mario': 3349, 'shirtless': 3350, 'vladimir': 3351, 'competition': 3352, 'quarter': 3353, 'breach': 3354, 'pie': 3355, 'environmental': 3356, 'anywhere': 3357, 'afternoon': 3358, 'pulitzer': 3359, 'foster': 3360, 'recruit': 3361, 'edit': 3362, 'goldman': 3363, 'promotion': 3364, 'hotels': 3365, 'conway': 3366, 'demonstrate': 3367, 'producer': 3368, 'murphy': 3369, 'cameron': 3370, 'opponent': 3371, 'jane': 3372, 'corpse': 3373, 'bare': 3374, 'escalate': 3375, 'genetic': 3376, 'leslie': 3377, 'comics': 3378, 'kris': 3379, 'patrol': 3380, 'athletes': 3381, 'publicist': 3382, 'scratch': 3383, 'citizenship': 3384, 'resignation': 3385, 'bright': 3386, 'brett': 3387, 'cruel': 3388, 'punishment': 3389, 'liberals': 3390, 'olds': 3391, 'everyday': 3392, 'wise': 3393, 'chipotle': 3394, 'barrel': 3395, 'shelve': 3396, 'fortune': 3397, 'decrease': 3398, 'feds': 3399, 'conceal': 3400, 'madness': 3401, 'device': 3402, 'danny': 3403, 'dole': 3404, 'wield': 3405, 'benghazi': 3406, 'jedi': 3407, 'pakistan': 3408, 'silicon': 3409, 'attraction': 3410, 'edwards': 3411, 'tease': 3412, 'bezos': 3413, 'poet': 3414, 'cookie': 3415, 'egypt': 3416, 'ensure': 3417, 'gene': 3418, 'preview': 3419, 'cycle': 3420, 'chili': 3421, 'unknown': 3422, 'cheaper': 3423, 'priebus': 3424, 'shrink': 3425, 'pink': 3426, 'joint': 3427, 'convict': 3428, 'folks': 3429, 'institute': 3430, 'hawk': 3431, 'supremacy': 3432, 'sheet': 3433, 'peak': 3434, 'rio': 3435, 'oldest': 3436, 'barr': 3437, 'espn': 3438, 'predator': 3439, 'springsteen': 3440, 'algorithm': 3441, 'soar': 3442, 'participate': 3443, 'apps': 3444, 'concept': 3445, 'pan': 3446, 'hashtag': 3447, 'discontinue': 3448, 'nonprofit': 3449, 'selena': 3450, 'leather': 3451, 'dude': 3452, 'scale': 3453, 'scan': 3454, 'opinions': 3455, 'southern': 3456, 'oath': 3457, 'coal': 3458, 'development': 3459, 'uphold': 3460, 'prisoner': 3461, 'systems': 3462, 'bow': 3463, 'sponsor': 3464, 'legendary': 3465, 'wisdom': 3466, 'genocide': 3467, 'faster': 3468, 'donuts': 3469, 'accusers': 3470, 'grip': 3471, 'filter': 3472, 'welfare': 3473, 'farewell': 3474, 'editorial': 3475, 'signature': 3476, 'iii': 3477, 'aniston': 3478, 'nate': 3479, 'none': 3480, 'nickname': 3481, 'subject': 3482, 'superhero': 3483, 'dispute': 3484, 'lisa': 3485, 'walmart': 3486, 'seven': 3487, 'narrowly': 3488, 'petition': 3489, 'visitors': 3490, 'murray': 3491, 'plug': 3492, 'cory': 3493, 'booker': 3494, 'trillion': 3495, 'directors': 3496, 'obamas': 3497, 'myth': 3498, 'hatch': 3499, 'permission': 3500, 'clown': 3501, 'woody': 3502, 'gary': 3503, 'brush': 3504, 'barbara': 3505, 'newt': 3506, 'philip': 3507, 'lifestyle': 3508, 'myths': 3509, 'decease': 3510, 'lyric': 3511, 'descend': 3512, 'medicaid': 3513, 'casino': 3514, 'nasty': 3515, 'broadcast': 3516, 'brook': 3517, 'mlb': 3518, 'highest': 3519, 'nut': 3520, 'slavery': 3521, 'implant': 3522, 'associate': 3523, 'statements': 3524, 'presidents': 3525, 'mac': 3526, 'weapon': 3527, 'din': 3528, 'resolve': 3529, 'acknowledge': 3530, 'downplay': 3531, 'behead': 3532, 'notre': 3533, 'binge': 3534, 'procedure': 3535, 'wealthy': 3536, 'libya': 3537, 'ross': 3538, 'delta': 3539, 'nevada': 3540, 'thin': 3541, 'attach': 3542, 'management': 3543, 'sequel': 3544, 'lago': 3545, 'cord': 3546, 'rural': 3547, 'utter': 3548, 'essential': 3549, 'naacp': 3550, 'hanks': 3551, 'classmates': 3552, 'endure': 3553, 'productive': 3554, 'cloud': 3555, 'unleash': 3556, 'bobby': 3557, 'egyptian': 3558, 'protester': 3559, 'millennial': 3560, 'occur': 3561, 'cannon': 3562, 'mariah': 3563, 'locate': 3564, 'shy': 3565, 'qatar': 3566, 'grotesque': 3567, 'recreate': 3568, 'crop': 3569, 'portraits': 3570, 'criminals': 3571, 'cardboard': 3572, 'enforcement': 3573, 'examine': 3574, 'chat': 3575, 'pill': 3576, 'sikh': 3577, 'chancellor': 3578, 'dope': 3579, 'morgan': 3580, 'homosexual': 3581, 'dolphin': 3582, 'astronaut': 3583, 'marathon': 3584, 'sanctuary': 3585, 'dhs': 3586, 'polar': 3587, 'region': 3588, 'hey': 3589, 'bartender': 3590, 'heritage': 3591, 'holder': 3592, 'equally': 3593, 'saudis': 3594, 'badass': 3595, 'nunes': 3596, 'critic': 3597, 'motorcycle': 3598, 'pastor': 3599, 'hemsworth': 3600, 'tensions': 3601, 'clash': 3602, 'alton': 3603, 'sachs': 3604, 'tennessee': 3605, 'rival': 3606, 'theresa': 3607, 'trigger': 3608, 'boom': 3609, 'loyalty': 3610, 'charter': 3611, 'loyal': 3612, 'fault': 3613, 'rub': 3614, 'skull': 3615, 'proudly': 3616, 'drum': 3617, 'unpopular': 3618, 'pfizer': 3619, 'jeopardy': 3620, 'solutions': 3621, 'karaoke': 3622, 'adults': 3623, 'measles': 3624, 'ground': 3625, 'mtv': 3626, 'supremacist': 3627, 'otherwise': 3628, 'sweater': 3629, 'sandy': 3630, 'ritual': 3631, 'roommates': 3632, 'mama': 3633, 'opponents': 3634, 'powerball': 3635, 'establishment': 3636, 'redefine': 3637, 'aaron': 3638, 'heartwarming': 3639, 'puzzle': 3640, 'podium': 3641, 'bump': 3642, 'fell': 3643, 'martial': 3644, 'presentation': 3645, 'arkansas': 3646, 'lewis': 3647, 'kenya': 3648, 'radical': 3649, 'sidewalk': 3650, 'pee': 3651, 'safely': 3652, 'neo': 3653, 'xbox': 3654, 'passage': 3655, 'homosexuality': 3656, 'gallery': 3657, 'filibuster': 3658, 'bug': 3659, 'victoria': 3660, 'bloody': 3661, 'operator': 3662, 'tension': 3663, 'tenant': 3664, 'toddlers': 3665, 'ton': 3666, 'item': 3667, 'melissa': 3668, 'consequences': 3669, 'repair': 3670, 'method': 3671, 'annually': 3672, 'task': 3673, 'denny': 3674, 'scare': 3675, 'garland': 3676, 'pipe': 3677, 'wildfires': 3678, 'proper': 3679, 'moderator': 3680, 'fema': 3681, 'mislead': 3682, 'vagina': 3683, 'excitedly': 3684, 'cent': 3685, 'parliament': 3686, 'owe': 3687, 'courage': 3688, 'container': 3689, 'eddie': 3690, 'veto': 3691, 'crap': 3692, 'individual': 3693, 'direction': 3694, 'batman': 3695, 'investment': 3696, 'doritos': 3697, 'nominees': 3698, 'rave': 3699, 'belt': 3700, 'scenes': 3701, 'flaw': 3702, 'shelf': 3703, 'massachusetts': 3704, 'activity': 3705, 'opt': 3706, 'obituary': 3707, 'defy': 3708, 'firefighters': 3709, 'rabbit': 3710, 'faa': 3711, 'advise': 3712, 'stack': 3713, 'elaborate': 3714, 'donut': 3715, 'mindfulness': 3716, 'mosque': 3717, 'rotate': 3718, 'crow': 3719, 'hugh': 3720, 'swallow': 3721, 'gently': 3722, 'andy': 3723, 'witch': 3724, 'pr': 3725, 'undergo': 3726, 'derail': 3727, 'prayer': 3728, 'crude': 3729, 'earlier': 3730, 'knee': 3731, 'sabotage': 3732, 'distant': 3733, 'souls': 3734, 'august': 3735, 'gentrification': 3736, 'dept': 3737, 'bernardino': 3738, 'emmys': 3739, 'desire': 3740, 'arpaio': 3741, 'visa': 3742, 'wooden': 3743, 'lean': 3744, 'cuban': 3745, 'hamas': 3746, 'aftermath': 3747, 'mat': 3748, 'corporations': 3749, 'injuries': 3750, 'unhinge': 3751, 'counter': 3752, 'steam': 3753, 'microwave': 3754, 'dustin': 3755, 'bloomberg': 3756, 'mic': 3757, 'burden': 3758, 'sisters': 3759, 'rae': 3760, 'prompt': 3761, 'unions': 3762, 'hairstyle': 3763, 'bo': 3764, 'alike': 3765, 'aziz': 3766, 'ansari': 3767, 'degree': 3768, 'pompeo': 3769, 'kingdom': 3770, 'reputation': 3771, 'id': 3772, 'hudson': 3773, 'sxsw': 3774, 'fireworks': 3775, 'whatsoever': 3776, 'torch': 3777, 'logo': 3778, 'redemption': 3779, 'reserve': 3780, 'behold': 3781, 'stake': 3782, 'morris': 3783, 'bullet': 3784, 'sustainable': 3785, 'fewer': 3786, 'quest': 3787, 'illusion': 3788, 'ceasefire': 3789, 'retreat': 3790, 'greenspan': 3791, 'boomers': 3792, 'va': 3793, 'decisions': 3794, 'harrow': 3795, 'dolphins': 3796, 'dj': 3797, 'anxious': 3798, 'distract': 3799, 'dean': 3800, 'globe': 3801, 'pollution': 3802, 'warehouse': 3803, 'rhino': 3804, 'huffington': 3805, 'tune': 3806, 'shield': 3807, 'privilege': 3808, 'rumsfeld': 3809, 'adjust': 3810, 'aleppo': 3811, 'possibly': 3812, 'maine': 3813, 'graffiti': 3814, 'selection': 3815, 'jerk': 3816, 'harris': 3817, 'often': 3818, 'prejudice': 3819, 'restaurants': 3820, 'sitcom': 3821, 'bounce': 3822, 'blog': 3823, 'republic': 3824, 'deficit': 3825, 'panther': 3826, 'rowling': 3827, 'solidarity': 3828, 'aclu': 3829, 'metoo': 3830, 'angela': 3831, 'maker': 3832, 'tournament': 3833, 'sony': 3834, 'talent': 3835, 'castro': 3836, 'accuser': 3837, 'knight': 3838, 'mit': 3839, 'yard': 3840, 'rocky': 3841, 'rhetoric': 3842, 'madonna': 3843, 'hood': 3844, 'flat': 3845, 'militants': 3846, 'steak': 3847, 'alter': 3848, 'definition': 3849, 'obvious': 3850, 'matthew': 3851, 'breath': 3852, 'ariana': 3853, 'material': 3854, 'forest': 3855, 'concrete': 3856, 'rainbow': 3857, 'barrier': 3858, 'standard': 3859, 'yorkers': 3860, 'tina': 3861, 'dicaprio': 3862, 'scholarship': 3863, 'conan': 3864, 'walgreens': 3865, 'usda': 3866, 'seventh': 3867, 'grande': 3868, 'teaser': 3869, 'alcoholic': 3870, 'charm': 3871, 'sugar': 3872, 'liar': 3873, 'patent': 3874, 'info': 3875, 'christians': 3876, 'closure': 3877, 'ear': 3878, 'beijing': 3879, 'upside': 3880, 'pep': 3881, 'molestation': 3882, 'jeans': 3883, 'innovative': 3884, 'nod': 3885, 'editors': 3886, 'pic': 3887, 'celebs': 3888, 'manufacture': 3889, 'withdraw': 3890, 'samsung': 3891, 'realistic': 3892, 'planner': 3893, 'philly': 3894, 'homicide': 3895, 'sake': 3896, 'devin': 3897, 'pearl': 3898, 'giants': 3899, 'massage': 3900, 'certain': 3901, 'aol': 3902, 'stray': 3903, 'verge': 3904, 'pyramid': 3905, 'waffle': 3906, 'additional': 3907, 'savage': 3908, 'spike': 3909, 'directions': 3910, 'stampede': 3911, 'pitbull': 3912, 'yellow': 3913, 'devil': 3914, 'bless': 3915, 'megyn': 3916, 'motherhood': 3917, 'hurry': 3918, 'instant': 3919, 'ski': 3920, 'bolt': 3921, 'drunken': 3922, 'advantage': 3923, 'diesel': 3924, 'extremists': 3925, 'christine': 3926, 'closest': 3927, 'unity': 3928, 'wayne': 3929, 'nixon': 3930, 'nephew': 3931, 'fastest': 3932, 'chop': 3933, 'jackpot': 3934, 'proclaim': 3935, 'barbecue': 3936, 'utah': 3937, 'dental': 3938, 'pistorius': 3939, 'fetus': 3940, 'borrow': 3941, 'graders': 3942, 'bradley': 3943, 'buzz': 3944, 'polish': 3945, 'streak': 3946, 'paula': 3947, 'happiest': 3948, 'curiosity': 3949, 'scotland': 3950, 'counsel': 3951, 'analyst': 3952, 'bay': 3953, 'glorious': 3954, 'lauer': 3955, 'slice': 3956, 'safer': 3957, 'sheer': 3958, 'visual': 3959, 'overnight': 3960, 'recipe': 3961, 'haircut': 3962, 'tick': 3963, 'dollars': 3964, 'paradise': 3965, 'undercover': 3966, 'mob': 3967, 'worthy': 3968, 'degrees': 3969, 'pole': 3970, 'lung': 3971, 'instruct': 3972, 'patch': 3973, 'reince': 3974, 'crate': 3975, 'verizon': 3976, 'ny': 3977, 'activism': 3978, 'gallup': 3979, 'hispanic': 3980, 'potato': 3981, 'click': 3982, 'impeachment': 3983, 'payment': 3984, 'journalism': 3985, 'deck': 3986, 'professors': 3987, 'slap': 3988, 'boil': 3989, 'flush': 3990, 'scent': 3991, 'wallet': 3992, 'consumption': 3993, 'forbid': 3994, 'hottest': 3995, 'stain': 3996, 'franklin': 3997, 'cvs': 3998, 'hong': 3999, 'kong': 4000, 'kourtney': 4001, 'eco': 4002, 'abortions': 4003, 'imitate': 4004, 'surprisingly': 4005, 'lopez': 4006, 'haley': 4007, 'ward': 4008, 'haze': 4009, 'stem': 4010, 'unearth': 4011, 'intact': 4012, 'toast': 4013, 'gordon': 4014, 'rehab': 4015, 'yelp': 4016, 'compromise': 4017, 'areas': 4018, 'analysis': 4019, 'pleasure': 4020, 'evangelical': 4021, 'lip': 4022, 'tumor': 4023, 'properly': 4024, 'traveler': 4025, 'analytica': 4026, 'mandatory': 4027, 'embassy': 4028, 'gomez': 4029, 'nikki': 4030, 'horn': 4031, 'santorum': 4032, 'pave': 4033, 'vegetarian': 4034, 'sample': 4035, 'justices': 4036, 'found': 4037, 'humble': 4038, 'nightclub': 4039, 'skeleton': 4040, 'thai': 4041, 'blanket': 4042, 'conservation': 4043, 'lethal': 4044, 'injection': 4045, 'pbs': 4046, 'hungry': 4047, 'scrap': 4048, 'erase': 4049, 'neither': 4050, 'amber': 4051, 'revive': 4052, 'gwyneth': 4053, 'paltrow': 4054, 'deer': 4055, 'islamophobia': 4056, 'chapter': 4057, 'inspiration': 4058, 'earliest': 4059, 'expire': 4060, 'hunter': 4061, 'carrie': 4062, 'protection': 4063, 'loudly': 4064, 'mentor': 4065, 'cutest': 4066, 'arianna': 4067, 'milo': 4068, 'pattern': 4069, 'bros': 4070, 'frog': 4071, 'mattress': 4072, 'clever': 4073, 'bryan': 4074, 'household': 4075, 'reese': 4076, 'gm': 4077, 'revise': 4078, 'surfer': 4079, 'ape': 4080, 'susan': 4081, 'bench': 4082, 'cease': 4083, 'swarm': 4084, 'everest': 4085, 'heartfelt': 4086, 'nine': 4087, 'session': 4088, 'berlin': 4089, 'surf': 4090, 'september': 4091, 'hostage': 4092, 'hicks': 4093, 'conversion': 4094, 'er': 4095, 'uninsured': 4096, 'asia': 4097, 'simply': 4098, 'assange': 4099, 'shin': 4100, 'diagnose': 4101, 'balcony': 4102, 'differences': 4103, 'swiss': 4104, 'chest': 4105, 'merge': 4106, 'expansion': 4107, 'celebration': 4108, 'function': 4109, 'headphones': 4110, 'yorker': 4111, 'thwart': 4112, 'detention': 4113, 'treasure': 4114, 'jefferson': 4115, 'narrative': 4116, 'bake': 4117, 'nest': 4118, 'locker': 4119, 'plain': 4120, 'runway': 4121, 'worship': 4122, 'precious': 4123, 'latin': 4124, 'sock': 4125, 'tearfully': 4126, 'transfer': 4127, 'exposure': 4128, 'rd': 4129, 'bureau': 4130, 'hotline': 4131, 'connecticut': 4132, 'nazis': 4133, 'psychic': 4134, 'cabin': 4135, 'poem': 4136, 'yacht': 4137, 'monopoly': 4138, 'tragically': 4139, 'entirety': 4140, 'locations': 4141, 'monologue': 4142, 'alliance': 4143, 'alec': 4144, 'upgrade': 4145, 'tide': 4146, 'katie': 4147, 'holmes': 4148, 'juice': 4149, 'dialogue': 4150, 'gays': 4151, 'rag': 4152, 'haters': 4153, 'penalty': 4154, 'lovers': 4155, 'mandela': 4156, 'maria': 4157, 'emotionally': 4158, 'await': 4159, 'mart': 4160, 'spiritual': 4161, 'wonderful': 4162, 'luke': 4163, 'ashley': 4164, 'coaster': 4165, 'choices': 4166, 'wealth': 4167, 'ketchup': 4168, 'jealous': 4169, 'elevator': 4170, 'satan': 4171, 'cookies': 4172, 'intimate': 4173, 'chairman': 4174, 'diagnosis': 4175, 'carol': 4176, 'reclaim': 4177, 'invitation': 4178, 'regulations': 4179, 'slope': 4180, 'salt': 4181, 'dawn': 4182, 'trumpcare': 4183, 'romantic': 4184, 'strain': 4185, 'gown': 4186, 'arby': 4187, 'cameras': 4188, 'zimmerman': 4189, 'dna': 4190, 'plummet': 4191, 'exec': 4192, 'mta': 4193, 'ordinary': 4194, 'violations': 4195, 'electoral': 4196, 'shed': 4197, 'leonardo': 4198, 'sci': 4199, 'moron': 4200, 'unique': 4201, 'sexuality': 4202, 'innovation': 4203, 'fatally': 4204, 'survival': 4205, 'undecided': 4206, 'ivory': 4207, 'nassar': 4208, 'tsarnaev': 4209, 'ncaa': 4210, 'strict': 4211, 'hatred': 4212, 'construct': 4213, 'endless': 4214, 'fargo': 4215, 'recipients': 4216, 'audition': 4217, 'danger': 4218, 'enchant': 4219, 'doodle': 4220, 'tone': 4221, 'password': 4222, 'bend': 4223, 'collar': 4224, 'wander': 4225, 'pussy': 4226, 'diego': 4227, 'argentina': 4228, 'disastrous': 4229, 'salute': 4230, 'qualify': 4231, 'glenn': 4232, 'esteem': 4233, 'rethink': 4234, 'playlist': 4235, 'purple': 4236, 'del': 4237, 'eclipse': 4238, 'buddy': 4239, 'assholes': 4240, 'forgiveness': 4241, 'zip': 4242, 'weddings': 4243, 'keystone': 4244, 'unsettle': 4245, 'lifelong': 4246, 'skyrocket': 4247, 'monthly': 4248, 'expense': 4249, 'randomly': 4250, 'pm': 4251, 'solemnly': 4252, 'vehicle': 4253, 'clark': 4254, 'arrival': 4255, 'griffin': 4256, 'diamond': 4257, 'allocate': 4258, 'doug': 4259, 'burgers': 4260, 'musicians': 4261, 'storage': 4262, 'thrive': 4263, 'elephant': 4264, 'shatter': 4265, 'feinstein': 4266, 'sub': 4267, 'patiently': 4268, 'aquarium': 4269, 'stroke': 4270, 'comeback': 4271, 'unlikely': 4272, 'syndrome': 4273, 'ai': 4274, 'aggressive': 4275, 'scottish': 4276, 'tyson': 4277, 'villain': 4278, 'dramatic': 4279, 'origin': 4280, 'vin': 4281, 'jenna': 4282, 'tyler': 4283, 'engulf': 4284, 'grassley': 4285, 'blasey': 4286, 'arguments': 4287, 'cole': 4288, 'bullshit': 4289, 'employers': 4290, 'conviction': 4291, 'chess': 4292, 'outline': 4293, 'terrorize': 4294, 'unusual': 4295, 'enrage': 4296, 'possibility': 4297, 'miserable': 4298, 'moderate': 4299, 'mayo': 4300, 'backup': 4301, 'escort': 4302, 'singapore': 4303, 'styrofoam': 4304, 'rescind': 4305, 'healthier': 4306, 'bitter': 4307, 'gonna': 4308, 'concede': 4309, 'dust': 4310, 'hart': 4311, 'aware': 4312, 'goods': 4313, 'cackle': 4314, 'buffett': 4315, 'helmet': 4316, 'shortage': 4317, 'principal': 4318, 'navigate': 4319, 'error': 4320, 'iceberg': 4321, 'nhl': 4322, 'sand': 4323, 'heavily': 4324, 'dangerously': 4325, 'versus': 4326, 'communications': 4327, 'robots': 4328, 'lick': 4329, 'strongest': 4330, 'khashoggi': 4331, 'suspension': 4332, 'horrors': 4333, 'midterm': 4334, 'harper': 4335, 'mccarthy': 4336, 'lure': 4337, 'peyton': 4338, 'badly': 4339, 'janitor': 4340, 'dismiss': 4341, 'denver': 4342, 'gut': 4343, 'bum': 4344, 'paramount': 4345, 'irs': 4346, 'truths': 4347, 'rupture': 4348, 'virtual': 4349, 'cannes': 4350, 'severe': 4351, 'blitzer': 4352, 'craigslist': 4353, 'refresh': 4354, 'fighter': 4355, 'blaze': 4356, 'contempt': 4357, 'gamble': 4358, 'crucial': 4359, 'tomato': 4360, 'elite': 4361, 'wwii': 4362, 'doll': 4363, 'shove': 4364, 'harsh': 4365, 'disick': 4366, 'todd': 4367, 'ya': 4368, 'captivate': 4369, 'hitler': 4370, 'badge': 4371, 'thriller': 4372, 'simon': 4373, 'superman': 4374, 'baffle': 4375, 'rebuild': 4376, 'tongue': 4377, 'vanish': 4378, 'reel': 4379, 'accountable': 4380, 'trophy': 4381, 'paralyze': 4382, 'smooth': 4383, 'fold': 4384, 'monsanto': 4385, 'betray': 4386, 'frat': 4387, 'reassure': 4388, 'recession': 4389, 'application': 4390, 'whenever': 4391, 'groom': 4392, 'decay': 4393, 'premier': 4394, 'piano': 4395, 'furlough': 4396, 'spicy': 4397, 'counselor': 4398, 'fest': 4399, 'yellowstone': 4400, 'darren': 4401, 'weaken': 4402, 'protections': 4403, 'insider': 4404, 'retain': 4405, 'teenagers': 4406, 'reef': 4407, 'trek': 4408, 'presence': 4409, 'weary': 4410, 'designers': 4411, 'hike': 4412, 'essentials': 4413, 'harbor': 4414, 'orca': 4415, 'ethical': 4416, 'entertain': 4417, 'physically': 4418, 'integrate': 4419, 'ranger': 4420, 'explanation': 4421, 'mediterranean': 4422, 'scold': 4423, 'ears': 4424, 'creek': 4425, 'auto': 4426, 'install': 4427, 'junk': 4428, 'macy': 4429, 'achievement': 4430, 'exxonmobil': 4431, 'paperwork': 4432, 'refuge': 4433, 'bookstore': 4434, 'parallel': 4435, 'stripper': 4436, 'liquor': 4437, 'extinct': 4438, 'sack': 4439, 'liars': 4440, 'telescope': 4441, 'venus': 4442, 'sympathy': 4443, 'entrepreneur': 4444, 'formal': 4445, 'foil': 4446, 'commemorate': 4447, 'schoolers': 4448, 'convert': 4449, 'pause': 4450, 'tooth': 4451, 'resources': 4452, 'bonus': 4453, 'blasio': 4454, 'diana': 4455, 'alt': 4456, 'berkeley': 4457, 'yield': 4458, 'dismember': 4459, 'jungle': 4460, 'disability': 4461, 'sexiest': 4462, 'theaters': 4463, 'stylish': 4464, 'fade': 4465, 'invisible': 4466, 'tornado': 4467, 'baton': 4468, 'especially': 4469, 'issa': 4470, 'complaints': 4471, 'malley': 4472, 'soothe': 4473, 'atlantic': 4474, 'flop': 4475, 'core': 4476, 'assassination': 4477, 'authority': 4478, 'pakistani': 4479, 'tuck': 4480, 'eighth': 4481, 'knicks': 4482, 'tissue': 4483, 'accent': 4484, 'fisherman': 4485, 'cereal': 4486, 'landmark': 4487, 'breitbart': 4488, 'oral': 4489, 'overlook': 4490, 'tucker': 4491, 'sensitive': 4492, 'bitcoin': 4493, 'legalization': 4494, 'clinic': 4495, 'legs': 4496, 'duke': 4497, 'incompetent': 4498, 'transplant': 4499, 'bale': 4500, 'technique': 4501, 'darkness': 4502, 'benedict': 4503, 'cleaner': 4504, 'beware': 4505, 'yemeni': 4506, 'robbery': 4507, 'bipartisan': 4508, 'hateful': 4509, 'lobbyist': 4510, 'enable': 4511, 'haul': 4512, 'mistakenly': 4513, 'philippine': 4514, 'duterte': 4515, 'transparency': 4516, 'mega': 4517, 'steel': 4518, 'smithsonian': 4519, 'envelope': 4520, 'soft': 4521, 'inject': 4522, 'contemplate': 4523, 'woes': 4524, 'coulter': 4525, 'deadline': 4526, 'layoffs': 4527, 'dummy': 4528, 'metal': 4529, 'cocktail': 4530, 'playstation': 4531, 'takeout': 4532, 'hockey': 4533, 'elementary': 4534, 'motorist': 4535, 'intense': 4536, 'tan': 4537, 'temporarily': 4538, 'slaughter': 4539, 'reinvent': 4540, 'unhealthy': 4541, 'invasion': 4542, 'eva': 4543, 'tales': 4544, 'depart': 4545, 'rapist': 4546, 'fantastic': 4547, 'pirate': 4548, 'prop': 4549, 'shopper': 4550, 'jean': 4551, 'depict': 4552, 'barber': 4553, 'sasha': 4554, 'spoilers': 4555, 'unicorn': 4556, 'acres': 4557, 'wag': 4558, 'classroom': 4559, 'lash': 4560, 'prosecutors': 4561, 'legislature': 4562, 'comedians': 4563, 'isolate': 4564, 'instructions': 4565, 'diners': 4566, 'dignity': 4567, 'narrow': 4568, 'investigator': 4569, 'blank': 4570, 'candle': 4571, 'berry': 4572, 'teenager': 4573, 'ongoing': 4574, 'princeton': 4575, 'keith': 4576, 'engine': 4577, 'libertarian': 4578, 'idiots': 4579, 'asians': 4580, 'captivity': 4581, 'rodriguez': 4582, 'ruth': 4583, 'constituents': 4584, 'sob': 4585, 'yosemite': 4586, 'honey': 4587, 'merrick': 4588, 'hastily': 4589, 'hollow': 4590, 'refrigerator': 4591, 'fossil': 4592, 'jonathan': 4593, 'primaries': 4594, 'rainforest': 4595, 'medicare': 4596, 'inclusion': 4597, 'scheme': 4598, 'impose': 4599, 'excellent': 4600, 'middleton': 4601, 'cultural': 4602, 'lovely': 4603, 'punk': 4604, 'kendall': 4605, 'standoff': 4606, 'mobile': 4607, 'boot': 4608, 'echo': 4609, 'reckless': 4610, 'hilary': 4611, 'duff': 4612, 'ham': 4613, 'ant': 4614, 'manhattan': 4615, 'yahoo': 4616, 'cocaine': 4617, 'liver': 4618, 'fascinate': 4619, 'discriminate': 4620, 'generous': 4621, 'smoker': 4622, 'jaw': 4623, 'confess': 4624, 'tsa': 4625, 'asylum': 4626, 'bloom': 4627, 'silently': 4628, 'drought': 4629, 'martha': 4630, 'biologists': 4631, 'ambition': 4632, 'travelers': 4633, 'strategies': 4634, 'nowhere': 4635, 'organic': 4636, 'contestants': 4637, 'obsessive': 4638, 'rahm': 4639, 'emanuel': 4640, 'withhold': 4641, 'jonas': 4642, 'butterfly': 4643, 'bark': 4644, 'representative': 4645, 'donations': 4646, 'swell': 4647, 'revisit': 4648, 'jewelry': 4649, 'tense': 4650, 'bullets': 4651, 'weep': 4652, 'oxford': 4653, 'whip': 4654, 'islands': 4655, 'guantanamo': 4656, 'banner': 4657, 'opera': 4658, 'carcass': 4659, 'ihop': 4660, 'negotiate': 4661, 'textbook': 4662, 'differently': 4663, 'dam': 4664, 'silly': 4665, 'congresswoman': 4666, 'toronto': 4667, 'kirsten': 4668, 'gillibrand': 4669, 'buffalo': 4670, 'postpone': 4671, 'laughter': 4672, 'simultaneously': 4673, 'fridge': 4674, 'clarkson': 4675, 'sideways': 4676, 'goat': 4677, 'simmons': 4678, 'meme': 4679, 'can': 4680, 'client': 4681, 'belong': 4682, 'regulation': 4683, 'accomplish': 4684, 'picnic': 4685, 'debilitate': 4686, 'familiar': 4687, 'michele': 4688, 'bachmann': 4689, 'takeover': 4690, 'prominent': 4691, 'duties': 4692, 'tent': 4693, 'fairy': 4694, 'bananas': 4695, 'etiquette': 4696, 'teddy': 4697, 'payments': 4698, 'fifa': 4699, 'sculpture': 4700, 'mint': 4701, 'sept': 4702, 'dennis': 4703, 'rod': 4704, 'carl': 4705, 'baron': 4706, 'deplete': 4707, 'collaboration': 4708, 'gwen': 4709, 'stefani': 4710, 'leap': 4711, 'overdose': 4712, 'definitive': 4713, 'fin': 4714, 'responses': 4715, 'cliff': 4716, 'goldfish': 4717, 'facility': 4718, 'postal': 4719, 'summon': 4720, 'bra': 4721, 'incarceration': 4722, 'branch': 4723, 'observe': 4724, 'smear': 4725, 'betrayal': 4726, 'bile': 4727, 'poignant': 4728, 'category': 4729, 'squirrel': 4730, 'overcrowd': 4731, 'dangle': 4732, 'impeach': 4733, 'coffin': 4734, 'anna': 4735, 'dancers': 4736, 'freezer': 4737, 'taraji': 4738, 'henson': 4739, 'applicant': 4740, 'icy': 4741, 'cynthia': 4742, 'landmarks': 4743, 'documentaries': 4744, 'deeper': 4745, 'yale': 4746, 'healthiest': 4747, 'gif': 4748, 'buttigieg': 4749, 'keyboard': 4750, 'hurricanes': 4751, 'intel': 4752, 'novelty': 4753, 'cindy': 4754, 'tariff': 4755, 'vogue': 4756, 'coroner': 4757, 'homelessness': 4758, 'burrito': 4759, 'maul': 4760, 'misery': 4761, 'abdul': 4762, 'deputies': 4763, 'discipline': 4764, 'weirdo': 4765, 'facial': 4766, 'nordstrom': 4767, 'dessert': 4768, 'publicly': 4769, 'broad': 4770, 'cosmopolitan': 4771, 'medal': 4772, 'harvard': 4773, 'autopsy': 4774, 'down': 4775, 'brutality': 4776, 'sharply': 4777, 'cyclist': 4778, 'pics': 4779, 'nightlife': 4780, 'resistant': 4781, 'pork': 4782, 'induce': 4783, 'reasonable': 4784, 'poorly': 4785, 'pulse': 4786, 'joel': 4787, 'nyt': 4788, 'column': 4789, 'humanitarian': 4790, 'indefinitely': 4791, 'simpler': 4792, 'ebay': 4793, 'refund': 4794, 'reconciliation': 4795, 'dirt': 4796, 'wikileaks': 4797, 'dedicate': 4798, 'advertisers': 4799, 'ominously': 4800, 'farmer': 4801, 'frighten': 4802, 'attitude': 4803, 'ramadan': 4804, 'sudan': 4805, 'titanic': 4806, 'photography': 4807, 'smug': 4808, 'pepsi': 4809, 'broker': 4810, 'happily': 4811, 'tobacco': 4812, 'topic': 4813, 'cherry': 4814, 'leno': 4815, 'advisors': 4816, 'coke': 4817, 'backpack': 4818, 'syrians': 4819, 'guinness': 4820, 'lurk': 4821, 'spoil': 4822, 'cube': 4823, 'fleet': 4824, 'babysitter': 4825, 'telephone': 4826, 'devote': 4827, 'nerd': 4828, 'em': 4829, 'example': 4830, 'homophobic': 4831, 'gulf': 4832, 'bribe': 4833, 'nabisco': 4834, 'roads': 4835, 'main': 4836, 'cds': 4837, 'rack': 4838, 'rome': 4839, 'hurl': 4840, 'lennon': 4841, 'bland': 4842, 'phoenix': 4843, 'frost': 4844, 'curl': 4845, 'initial': 4846, 'arts': 4847, 'beliefs': 4848, 'besides': 4849, 'overhead': 4850, 'recycle': 4851, 'ceos': 4852, 'lounge': 4853, 'charlize': 4854, 'theron': 4855, 'spoon': 4856, 'kindness': 4857, 'assembly': 4858, 'baghdad': 4859, 'representatives': 4860, 'introvert': 4861, 'dinosaur': 4862, 'acquaintance': 4863, 'tapper': 4864, 'lemon': 4865, 'extinction': 4866, 'spacey': 4867, 'kidney': 4868, 'excitement': 4869, 'pug': 4870, 'reluctantly': 4871, 'correspondents': 4872, 'crystal': 4873, 'plague': 4874, 'alexandria': 4875, 'lindsay': 4876, 'offense': 4877, 'extensive': 4878, 'waiter': 4879, 'khan': 4880, 'coral': 4881, 'verify': 4882, 'anatomy': 4883, 'tomi': 4884, 'reproductive': 4885, 'ireland': 4886, 'cortez': 4887, 'stoke': 4888, 'gel': 4889, 'genuine': 4890, 'thick': 4891, 'laurie': 4892, 'hernandez': 4893, 'underwater': 4894, 'employment': 4895, 'demi': 4896, 'lovato': 4897, 'pilgrimage': 4898, 'curt': 4899, 'boardroom': 4900, 'internal': 4901, 'loop': 4902, 'tourism': 4903, 'hunters': 4904, 'kindergarten': 4905, 'junkie': 4906, 'lea': 4907, 'undo': 4908, 'awe': 4909, 'defamation': 4910, 'allergies': 4911, 'airbnb': 4912, 'monkey': 4913, 'diy': 4914, 'import': 4915, 'coin': 4916, 'default': 4917, 'roth': 4918, 'honestly': 4919, 'salary': 4920, 'decry': 4921, 'witherspoon': 4922, 'accurate': 4923, 'impoverish': 4924, 'relatives': 4925, 'lauren': 4926, 'fifty': 4927, 'feminists': 4928, 'alcoholism': 4929, 'breakdown': 4930, 'watergate': 4931, 'upper': 4932, 'fondly': 4933, 'accommodate': 4934, 'literary': 4935, 'parental': 4936, 'nutritionists': 4937, 'anticipate': 4938, 'undermine': 4939, 'stark': 4940, 'industrial': 4941, 'hog': 4942, 'obtain': 4943, 'angelina': 4944, 'condom': 4945, 'shooters': 4946, 'integrity': 4947, 'currency': 4948, 'desert': 4949, 'murderer': 4950, 'pony': 4951, 'leftovers': 4952, 'assist': 4953, 'fred': 4954, 'forecast': 4955, 'consent': 4956, 'tommy': 4957, 'libyan': 4958, 'helpful': 4959, 'ahmed': 4960, 'frito': 4961, 'maddow': 4962, 'avengers': 4963, 'champ': 4964, 'debbie': 4965, 'chewbacca': 4966, 'seemingly': 4967, 'julian': 4968, 'mosul': 4969, 'variety': 4970, 'vegan': 4971, 'creation': 4972, 'tuition': 4973, 'ethnic': 4974, 'psychology': 4975, 'tinder': 4976, 'constitutional': 4977, 'empathy': 4978, 'carlson': 4979, 'odd': 4980, 'pigeon': 4981, 'cotton': 4982, 'breastfeed': 4983, 'carrier': 4984, 'brick': 4985, 'offices': 4986, 'saint': 4987, 'purse': 4988, 'teary': 4989, 'expel': 4990, 'topple': 4991, 'enhance': 4992, 'hathaway': 4993, 'vast': 4994, 'font': 4995, 'unload': 4996, 'morbidly': 4997, 'stag': 4998, 'lobbyists': 4999, 'joaquin': 5000, 'booth': 5001, 'inaugural': 5002, 'dylan': 5003, 'ravage': 5004, 'rifle': 5005, 'interference': 5006, 'alternate': 5007, 'context': 5008, 'psychological': 5009, 'ramp': 5010, 'establish': 5011, 'monica': 5012, 'alito': 5013, 'discredit': 5014, 'console': 5015, 'eleven': 5016, 'hogan': 5017, 'behalf': 5018, 'simpsons': 5019, 'turmoil': 5020, 'difficulty': 5021, 'dudes': 5022, 'jolie': 5023, 'ferrera': 5024, 'mice': 5025, 'auction': 5026, 'grease': 5027, 'erect': 5028, 'dealer': 5029, 'fraternity': 5030, 'bp': 5031, 'pad': 5032, 'commute': 5033, 'diplomatic': 5034, 'boxer': 5035, 'hungover': 5036, 'pharma': 5037, 'funnel': 5038, 'laundry': 5039, 'mishap': 5040, 'cling': 5041, 'diabetes': 5042, 'ingraham': 5043, 'supremacists': 5044, 'blogger': 5045, 'armor': 5046, 'doorstep': 5047, 'temperatures': 5048, 'appointment': 5049, 'phelps': 5050, 'denounce': 5051, 'calories': 5052, 'flatter': 5053, 'seasonal': 5054, 'slot': 5055, 'preschool': 5056, 'colombia': 5057, 'hussein': 5058, 'nab': 5059, 'jazeera': 5060, 'ounce': 5061, 'poetry': 5062, 'salmon': 5063, 'anecdote': 5064, 'ivy': 5065, 'whatsapp': 5066, 'wal': 5067, 'sharp': 5068, 'detector': 5069, 'mishandle': 5070, 'complaint': 5071, 'wacky': 5072, 'freddie': 5073, 'poke': 5074, 'coup': 5075, 'nashville': 5076, 'teller': 5077, 'pickup': 5078, 'wive': 5079, 'explosive': 5080, 'advisers': 5081, 'cruelty': 5082, 'terry': 5083, 'vandalize': 5084, 'brave': 5085, 'prosecute': 5086, 'mrs': 5087, 'infuriate': 5088, 'nerve': 5089, 'rouge': 5090, 'jose': 5091, 'bader': 5092, 'ginsburg': 5093, 'mph': 5094, 'plenty': 5095, 'peanuts': 5096, 'waist': 5097, 'rig': 5098, 'feast': 5099, 'glory': 5100, 'malcolm': 5101, 'buff': 5102, 'pronounce': 5103, 'mommy': 5104, 'ruby': 5105, 'inquiry': 5106, 'monsters': 5107, 'ahmadinejad': 5108, 'personally': 5109, 'showdown': 5110, 'rider': 5111, 'wheat': 5112, 'hilton': 5113, 'reminders': 5114, 'sandra': 5115, 'haiti': 5116, 'pillow': 5117, 'taxi': 5118, 'bedtime': 5119, 'palace': 5120, 'slippery': 5121, 'speakers': 5122, 'emoji': 5123, 'operation': 5124, 'lucas': 5125, 'hostile': 5126, 'gesture': 5127, 'muscle': 5128, 'saddam': 5129, 'landscape': 5130, 'lance': 5131, 'diverse': 5132, 'cripple': 5133, 'papa': 5134, 'instal': 5135, 'indians': 5136, 'plow': 5137, 'oceans': 5138, 'boomer': 5139, 'filthy': 5140, 'swastika': 5141, 'orrin': 5142, 'hippie': 5143, 'aspire': 5144, 'christina': 5145, 'investors': 5146, 'cemetery': 5147, 'carnival': 5148, 'lips': 5149, 'shovel': 5150, 'diseases': 5151, 'czar': 5152, 'pokemon': 5153, 'detainees': 5154, 'wrench': 5155, 'mormon': 5156, 'cult': 5157, 'insert': 5158, 'pine': 5159, 'max': 5160, 'deaf': 5161, 'joseph': 5162, 'fey': 5163, 'drift': 5164, 'trainer': 5165, 'enact': 5166, 'mushroom': 5167, 'dc': 5168, 'portland': 5169, 'millionaire': 5170, 'visibly': 5171, 'technician': 5172, 'gawker': 5173, 'watermelon': 5174, 'wax': 5175, 'pixar': 5176, 'squeeze': 5177, 'clap': 5178, 'janet': 5179, 'pander': 5180, 'disillusion': 5181, 'hopefuls': 5182, 'blindside': 5183, 'bashar': 5184, 'toaster': 5185, 'clearance': 5186, 'olivia': 5187, 'grandkids': 5188, 'hydraulic': 5189, 'rediscover': 5190, 'ambitious': 5191, 'visitor': 5192, 'financially': 5193, 'adorably': 5194, 'jfk': 5195, 'peanut': 5196, 'psa': 5197, 'inadvertently': 5198, 'spectrum': 5199, 'universities': 5200, 'dunkin': 5201, 'preparation': 5202, 'reflection': 5203, 'semitism': 5204, 'ballet': 5205, 'robbins': 5206, 'rookie': 5207, 'principles': 5208, 'assed': 5209, 'celeb': 5210, 'rely': 5211, 'penn': 5212, 'accessible': 5213, 'airstrikes': 5214, 'tpp': 5215, 'designate': 5216, 'sustain': 5217, 'bye': 5218, 'crunch': 5219, 'drummer': 5220, 'doomsday': 5221, 'correctly': 5222, 'suv': 5223, 'representation': 5224, 'ridiculously': 5225, 'dinosaurs': 5226, 'sin': 5227, 'competitive': 5228, 'gubernatorial': 5229, 'gyllenhaal': 5230, 'cement': 5231, 'banksy': 5232, 'groundbreaking': 5233, 'overseas': 5234, 'paddle': 5235, 'slight': 5236, 'solange': 5237, 'vmas': 5238, 'corps': 5239, 'progressives': 5240, 'tighten': 5241, 'numerous': 5242, 'cheeseburger': 5243, 'goodell': 5244, 'buzzfeed': 5245, 'petraeus': 5246, 'dow': 5247, 'provision': 5248, 'blackface': 5249, 'rupert': 5250, 'murdoch': 5251, 'spit': 5252, 'phil': 5253, 'casey': 5254, 'snapchat': 5255, 'flirt': 5256, 'spokesman': 5257, 'dumpster': 5258, 'patriot': 5259, 'renewable': 5260, 'assassin': 5261, 'bass': 5262, 'outdated': 5263, 'noise': 5264, 'mon': 5265, 'intimidate': 5266, 'wrinkle': 5267, 'circus': 5268, 'handmaid': 5269, 'linger': 5270, 'animate': 5271, 'miners': 5272, 'teeter': 5273, 'elephants': 5274, 'offensive': 5275, 'hipster': 5276, 'shriek': 5277, 'violently': 5278, 'combine': 5279, 'dianne': 5280, 'ninja': 5281, 'cuff': 5282, 'dupe': 5283, 'sector': 5284, 'shkreli': 5285, 'enormous': 5286, 'rove': 5287, 'sir': 5288, 'vicious': 5289, 'covet': 5290, 'towns': 5291, 'subscribers': 5292, 'harrison': 5293, 'handcuff': 5294, 'genital': 5295, 'somalia': 5296, 'browser': 5297, 'failures': 5298, 'destiny': 5299, 'tenure': 5300, 'optimistic': 5301, 'ukrainian': 5302, 'nacho': 5303, 'screenwriter': 5304, 'description': 5305, 'dwayne': 5306, 'snyder': 5307, 'mizzou': 5308, 'caroline': 5309, 'grasp': 5310, 'olive': 5311, 'ovation': 5312, 'owl': 5313, 'looney': 5314, 'unlock': 5315, 'ren': 5316, 'gabrielle': 5317, 'gaffe': 5318, 'wood': 5319, 'colleague': 5320, 'dairy': 5321, 'blizzard': 5322, 'fucker': 5323, 'motivational': 5324, 'chemistry': 5325, 'newsroom': 5326, 'alpha': 5327, 'consultant': 5328, 'clinch': 5329, 'subculture': 5330, 'prosthetic': 5331, 'vend': 5332, 'influential': 5333, 'driveway': 5334, 'atheist': 5335, 'sway': 5336, 'sorority': 5337, 'pinterest': 5338, 'pact': 5339, 'norway': 5340, 'stalk': 5341, 'bergdahl': 5342, 'insight': 5343, 'advisor': 5344, 'concession': 5345, 'decimate': 5346, 'legitimate': 5347, 'railroad': 5348, 'purge': 5349, 'milestone': 5350, 'burton': 5351, 'elusive': 5352, 'uncertain': 5353, 'extremist': 5354, 'fabric': 5355, 'autograph': 5356, 'unemployment': 5357, 'landlord': 5358, 'despondent': 5359, 'reddit': 5360, 'manufacturers': 5361, 'keg': 5362, 'nye': 5363, 'delicate': 5364, 'jenny': 5365, 'kinky': 5366, 'decent': 5367, 'collective': 5368, 'macron': 5369, 'assert': 5370, 'dial': 5371, 'jesse': 5372, 'hose': 5373, 'homemade': 5374, 'sesame': 5375, 'vintage': 5376, 'wanna': 5377, 'watchdog': 5378, 'nightly': 5379, 'pageant': 5380, 'cough': 5381, 'walter': 5382, 'steer': 5383, 'sierra': 5384, 'listener': 5385, 'immunity': 5386, 'biblical': 5387, 'skater': 5388, 'bette': 5389, 'midler': 5390, 'gallons': 5391, 'prisons': 5392, 'mo': 5393, 'fetish': 5394, 'harmful': 5395, 'apocalypse': 5396, 'october': 5397, 'corey': 5398, 'papal': 5399, 'arena': 5400, 'rescuers': 5401, 'aretha': 5402, 'shameless': 5403, 'chic': 5404, 'crotch': 5405, 'chappelle': 5406, 'ms': 5407, 'hulk': 5408, 'worthless': 5409, 'dash': 5410, 'huntsman': 5411, 'tuna': 5412, 'deposit': 5413, 'uncertainty': 5414, 'futures': 5415, 'explorer': 5416, 'speeches': 5417, 'nighter': 5418, 'heckle': 5419, 'noble': 5420, 'vault': 5421, 'overwork': 5422, 'mogul': 5423, 'skirt': 5424, 'hideous': 5425, 'mountains': 5426, 'cargo': 5427, 'needle': 5428, 'snoop': 5429, 'smuggle': 5430, 'prescriptions': 5431, 'luxury': 5432, 'dye': 5433, 'unnerve': 5434, 'forehead': 5435, 'prostitute': 5436, 'newtown': 5437, 'pedophilia': 5438, 'msnbc': 5439, 'hanes': 5440, 'swedish': 5441, 'uninspired': 5442, 'krugman': 5443, 'artificial': 5444, 'estimate': 5445, 'amal': 5446, 'dutch': 5447, 'katrina': 5448, 'ankle': 5449, 'widower': 5450, 'helpless': 5451, 'publisher': 5452, 'petty': 5453, 'antonin': 5454, 'panama': 5455, 'broncos': 5456, 'debunk': 5457, 'tender': 5458, 'ridicule': 5459, 'grandchildren': 5460, 'maya': 5461, 'performer': 5462, 'bangladesh': 5463, 'dodge': 5464, 'peaceful': 5465, 'peel': 5466, 'harriet': 5467, 'critically': 5468, 'whiten': 5469, 'evade': 5470, 'deport': 5471, 'layer': 5472, 'recommendation': 5473, 'extraordinary': 5474, 'largely': 5475, 'cents': 5476, 'haspel': 5477, 'jeremy': 5478, 'nationalist': 5479, 'ho': 5480, 'collision': 5481, 'angels': 5482, 'provider': 5483, 'cantor': 5484, 'interrogation': 5485, 'reshape': 5486, 'aurora': 5487, 'underground': 5488, 'karen': 5489, 'organs': 5490, 'creature': 5491, 'confessions': 5492, 'beatles': 5493, 'unreleased': 5494, 'ocasio': 5495, 'browse': 5496, 'apartments': 5497, 'formally': 5498, 'patriots': 5499, 'though': 5500, 'pollute': 5501, 'calf': 5502, 'hr': 5503, 'colombian': 5504, 'malfunction': 5505, 'clintons': 5506, 'margaret': 5507, 'da': 5508, 'mickey': 5509, 'ladder': 5510, 'pyeongchang': 5511, 'deadliest': 5512, 'executions': 5513, 'hanukkah': 5514, 'explicitly': 5515, 'chilean': 5516, 'nicole': 5517, 'havoc': 5518, 'venture': 5519, 'boulder': 5520, 'motivate': 5521, 'gosling': 5522, 'latina': 5523, 'sleepy': 5524, 'barnes': 5525, 'suitcase': 5526, 'cod': 5527, 'wireless': 5528, 'sewage': 5529, 'collide': 5530, 'salon': 5531, 'staple': 5532, 'karl': 5533, 'submit': 5534, 'solely': 5535, 'automatic': 5536, 'expression': 5537, 'duo': 5538, 'doughnuts': 5539, 'clutch': 5540, 'sheldon': 5541, 'crust': 5542, 'shore': 5543, 'cope': 5544, 'barry': 5545, 'hoffman': 5546, 'claus': 5547, 'firearms': 5548, 'vest': 5549, 'bio': 5550, 'loft': 5551, 'heel': 5552, 'tribe': 5553, 'sharon': 5554, 'grad': 5555, 'dissent': 5556, 'drip': 5557, 'permit': 5558, 'administrator': 5559, 'disrupt': 5560, 'height': 5561, 'unfortunately': 5562, 'bigot': 5563, 'veal': 5564, 'brunch': 5565, 'roomba': 5566, 'shudder': 5567, 'acceptable': 5568, 'malia': 5569, 'hpv': 5570, 'eventually': 5571, 'frantic': 5572, 'extension': 5573, 'symbol': 5574, 'theatre': 5575, 'insufferable': 5576, 'powell': 5577, 'ap': 5578, 'barbra': 5579, 'streisand': 5580, 'dubai': 5581, 'anxiously': 5582, 'homophobia': 5583, 'sadder': 5584, 'creativity': 5585, 'nathan': 5586, 'out': 5587, 'connections': 5588, 'juicy': 5589, 'volkswagen': 5590, 'tweeters': 5591, 'burglar': 5592, 'hacker': 5593, 'chickens': 5594, 'sailor': 5595, 'motel': 5596, 'wolves': 5597, 'entrepreneurship': 5598, 'mara': 5599, 'bbc': 5600, 'diary': 5601, 'sheryl': 5602, 'odds': 5603, 'translate': 5604, 'losers': 5605, 'inevitable': 5606, 'handful': 5607, 'douglas': 5608, 'kirk': 5609, 'mindful': 5610, 'whitey': 5611, 'bulger': 5612, 'verdict': 5613, 'novelist': 5614, 'minorities': 5615, 'shrug': 5616, 'removal': 5617, 'affairs': 5618, 'youths': 5619, 'televise': 5620, 'buffet': 5621, 'scandals': 5622, 'smoothie': 5623, 'squander': 5624, 'texts': 5625, 'pity': 5626, 'seymour': 5627, 'junior': 5628, 'cousins': 5629, 'prevention': 5630, 'humane': 5631, 'ballistic': 5632, 'offshore': 5633, 'campbell': 5634, 'ashamed': 5635, 'legislators': 5636, 'altar': 5637, 'server': 5638, 'emotions': 5639, 'subconscious': 5640, 'demolish': 5641, 'archbishop': 5642, 'jupiter': 5643, 'wad': 5644, 'division': 5645, 'intellectual': 5646, 'dilemma': 5647, 'temple': 5648, 'metallica': 5649, 'hubris': 5650, 'scathing': 5651, 'walkout': 5652, 'lochte': 5653, 'universal': 5654, 'stevens': 5655, 'vaccines': 5656, 'consult': 5657, 'condoms': 5658, 'carve': 5659, 'thieve': 5660, 'syrup': 5661, 'rewrite': 5662, 'nepal': 5663, 'informant': 5664, 'zinke': 5665, 'osama': 5666, 'route': 5667, 'subscription': 5668, 'illustrate': 5669, 'guidance': 5670, 'leaf': 5671, 'debacle': 5672, 'lineup': 5673, 'schwarzenegger': 5674, 'sweatshirt': 5675, 'comprehensive': 5676, 'schultz': 5677, 'lahren': 5678, 'experimental': 5679, 'employ': 5680, 'entitle': 5681, 'lately': 5682, 'abs': 5683, 'desktop': 5684, 'revenue': 5685, 'donor': 5686, 'gerrymander': 5687, 'backfire': 5688, 'solid': 5689, 'hamill': 5690, 'doom': 5691, 'infants': 5692, 'impersonator': 5693, 'islamist': 5694, 'politically': 5695, 'kabul': 5696, 'remarkable': 5697, 'rejection': 5698, 'heartbroken': 5699, 'ownership': 5700, 'insurers': 5701, 'cupboard': 5702, 'hedge': 5703, 'runner': 5704, 'avalanche': 5705, 'grisly': 5706, 'silverman': 5707, 'habitat': 5708, 'spar': 5709, 'stagger': 5710, 'levine': 5711, 'maroon': 5712, 'hobbies': 5713, 'trunk': 5714, 'reflections': 5715, 'playoff': 5716, 'heavenly': 5717, 'morrison': 5718, 'solitary': 5719, 'chronic': 5720, 'tag': 5721, 'trauma': 5722, 'sever': 5723, 'usual': 5724, 'outlaw': 5725, 'charitable': 5726, 'shorter': 5727, 'pierce': 5728, 'mayer': 5729, 'outage': 5730, 'commuters': 5731, 'genetically': 5732, 'modify': 5733, 'restrict': 5734, 'ricans': 5735, 'rowdy': 5736, 'eerie': 5737, 'architect': 5738, 'invasive': 5739, 'gig': 5740, 'pamela': 5741, 'florence': 5742, 'candid': 5743, 'demise': 5744, 'victorious': 5745, 'spencer': 5746, 'guardians': 5747, 'delusional': 5748, 'christianity': 5749, 'militia': 5750, 'bronze': 5751, 'commander': 5752, 'razor': 5753, 'le': 5754, 'napkin': 5755, 'hearted': 5756, 'straw': 5757, 'harden': 5758, 'studios': 5759, 'placement': 5760, 'newspapers': 5761, 'falsify': 5762, 'stockholm': 5763, 'lodge': 5764, 'gymnastics': 5765, 'popcorn': 5766, 'lloyd': 5767, 'wistfully': 5768, 'discount': 5769, 'cue': 5770, 'fulfil': 5771, 'scrabble': 5772, 'masterpiece': 5773, 'acosta': 5774, 'oz': 5775, 'dildo': 5776, 'scooter': 5777, 'economists': 5778, 'crocodile': 5779, 'continuous': 5780, 'changer': 5781, 'guinea': 5782, 'southwest': 5783, 'guarantee': 5784, 'congratulate': 5785, 'cloak': 5786, 'horribly': 5787, 'stan': 5788, 'limb': 5789, 'passion': 5790, 'memorable': 5791, 'equity': 5792, 'takei': 5793, 'workday': 5794, 'derek': 5795, 'pornography': 5796, 'kobe': 5797, 'bouncer': 5798, 'tumble': 5799, 'alumni': 5800, 'nd': 5801, 'avert': 5802, 'honk': 5803, 'mlk': 5804, 'odom': 5805, 'buckingham': 5806, 'porch': 5807, 'statues': 5808, 'scroll': 5809, 'overtime': 5810, 'males': 5811, 'ingredient': 5812, 'colony': 5813, 'proposals': 5814, 'clog': 5815, 'colorful': 5816, 'martian': 5817, 'mow': 5818, 'mankind': 5819, 'highways': 5820, 'households': 5821, 'discussion': 5822, 'attendee': 5823, 'remainder': 5824, 'bishop': 5825, 'soil': 5826, 'shipment': 5827, 'hare': 5828, 'buddha': 5829, 'psychologists': 5830, 'productivity': 5831, 'govern': 5832, 'maternity': 5833, 'admissions': 5834, 'patton': 5835, 'speechless': 5836, 'brighten': 5837, 'automate': 5838, 'mansion': 5839, 'volcano': 5840, 'dependence': 5841, 'diner': 5842, 'disturbingly': 5843, 'sec': 5844, 'england': 5845, 'basically': 5846, 'cowboys': 5847, 'quarantine': 5848, 'inappropriate': 5849, 'sausage': 5850, 'marines': 5851, 'ecosystem': 5852, 'originally': 5853, 'gruesome': 5854, 'via': 5855, 'meaningless': 5856, 'ingredients': 5857, 'brutally': 5858, 'huddle': 5859, 'careful': 5860, 'halftime': 5861, 'greyhound': 5862, 'olympian': 5863, 'cinnamon': 5864, 'spinoff': 5865, 'snowden': 5866, 'yearbook': 5867, 'unprecedented': 5868, 'portray': 5869, 'urinal': 5870, 'pudding': 5871, 'destruct': 5872, 'maid': 5873, 'turner': 5874, 'flap': 5875, 'suburban': 5876, 'fulfill': 5877, 'individually': 5878, 'recruiter': 5879, 'grain': 5880, 'bankruptcy': 5881, 'lakers': 5882, 'prospect': 5883, 'gospel': 5884, 'widespread': 5885, 'legends': 5886, 'specific': 5887, 'carpool': 5888, 'salsa': 5889, 'shithole': 5890, 'girlfriends': 5891, 'congressmen': 5892, 'exam': 5893, 'paw': 5894, 'fracking': 5895, 'calendar': 5896, 'retro': 5897, 'generic': 5898, 'sensation': 5899, 'vortex': 5900, 'wikipedia': 5901, 'strand': 5902, 'obnoxious': 5903, 'bts': 5904, 'superstar': 5905, 'rebuke': 5906, 'caller': 5907, 'mcconaughey': 5908, 'theories': 5909, 'kardashians': 5910, 'synagogue': 5911, 'spectacular': 5912, 'hoax': 5913, 'lingerie': 5914, 'ipod': 5915, 'kitsch': 5916, 'duchess': 5917, 'ava': 5918, 'duvernay': 5919, 'realization': 5920, 'aarp': 5921, 'emily': 5922, 'laquan': 5923, 'coachella': 5924, 'alexander': 5925, 'lunatic': 5926, 'henry': 5927, 'powerpoint': 5928, 'immediate': 5929, 'stein': 5930, 'hummus': 5931, 'poise': 5932, 'cam': 5933, 'columnist': 5934, 'eminem': 5935, 'dixon': 5936, 'jan': 5937, 'symptoms': 5938, 'devour': 5939, 'channing': 5940, 'tatum': 5941, 'enforce': 5942, 'till': 5943, 'revoke': 5944, 'membership': 5945, 'orphan': 5946, 'raytheon': 5947, 'mode': 5948, 'applebee': 5949, 'exonerate': 5950, 'internment': 5951, 'assign': 5952, 'mourners': 5953, 'shuttle': 5954, 'wiig': 5955, 'whistle': 5956, 'driverless': 5957, 'pancakes': 5958, 'exxon': 5959, 'runaway': 5960, 'bono': 5961, 'wardrobe': 5962, 'olsen': 5963, 'unionize': 5964, 'cerebral': 5965, 'palsy': 5966, 'royals': 5967, 'dem': 5968, 'scenario': 5969, 'amanda': 5970, 'travis': 5971, 'advisory': 5972, 'bi': 5973, 'confound': 5974, 'softball': 5975, 'jindal': 5976, 'amsterdam': 5977, 'mashup': 5978, 'smog': 5979, 'sooner': 5980, 'trademark': 5981, 'bonkers': 5982, 'gratification': 5983, 'midlife': 5984, 'endorsements': 5985, 'ferrell': 5986, 'heartbreak': 5987, 'stare': 5988, 'gods': 5989, 'combination': 5990, 'ramble': 5991, 'vilsack': 5992, 'bravery': 5993, 'contractors': 5994, 'disappointment': 5995, 'temporary': 5996, 'geologists': 5997, 'bisexual': 5998, 'whiteboard': 5999, 'cutout': 6000, 'richer': 6001, 'falcon': 6002, 'mortal': 6003, 'comb': 6004, 'mechanic': 6005, 'lol': 6006, 'vegetable': 6007, 'occasion': 6008, 'luigi': 6009, 'counterfeit': 6010, 'sotomayor': 6011, 'unanimously': 6012, 'partnership': 6013, 'naomi': 6014, 'whistleblower': 6015, 'lester': 6016, 'supermarket': 6017, 'juggle': 6018, 'crib': 6019, 'whoa': 6020, 'parkinson': 6021, 'outreach': 6022, 'equifax': 6023, 'rom': 6024, 'prey': 6025, 'asset': 6026, 'populism': 6027, 'unfinished': 6028, 'batter': 6029, 'fawn': 6030, 'vince': 6031, 'fundraiser': 6032, 'surrender': 6033, 'courageous': 6034, 'norman': 6035, 'perch': 6036, 'cozy': 6037, 'antarctica': 6038, 'strategist': 6039, 'penny': 6040, 'substitute': 6041, 'compassion': 6042, 'gush': 6043, 'wi': 6044, 'caution': 6045, 'gloss': 6046, 'slash': 6047, 'airports': 6048, 'useful': 6049, 'mckinnon': 6050, 'glover': 6051, 'dynamite': 6052, 'longingly': 6053, 'helm': 6054, 'convenience': 6055, 'eviscerate': 6056, 'commitment': 6057, 'spawn': 6058, 'bundy': 6059, 'diaz': 6060, 'grid': 6061, 'lowest': 6062, 'peacefully': 6063, 'bruno': 6064, 'goldberg': 6065, 'newlyweds': 6066, 'pileup': 6067, 'vincent': 6068, 'adaptation': 6069, 'insects': 6070, 'martyr': 6071, 'exclusively': 6072, 'blister': 6073, 'heed': 6074, 'nielsen': 6075, 'heights': 6076, 'greg': 6077, 'tabs': 6078, 'clergy': 6079, 'cowardly': 6080, 'responders': 6081, 'guacamole': 6082, 'savvy': 6083, 'lil': 6084, 'unhappy': 6085, 'slump': 6086, 'downton': 6087, 'abbey': 6088, 'terribly': 6089, 'invoke': 6090, 'unreal': 6091, 'lapierre': 6092, 'harpoon': 6093, 'spree': 6094, 'pasta': 6095, 'grim': 6096, 'hover': 6097, 'restrain': 6098, 'philosophy': 6099, 'locals': 6100, 'adoption': 6101, 'skew': 6102, 'unthinkable': 6103, 'vip': 6104, 'performers': 6105, 'mosquito': 6106, 'bon': 6107, 'bots': 6108, 'spook': 6109, 'jamie': 6110, 'rental': 6111, 'frustration': 6112, 'rampage': 6113, 'slumber': 6114, 'messy': 6115, 'nuns': 6116, 'forum': 6117, 'electronic': 6118, 'daylight': 6119, 'dysfunctional': 6120, 'particular': 6121, 'aldrin': 6122, 'stable': 6123, 'pancake': 6124, 'weiner': 6125, 'specials': 6126, 'doggy': 6127, 'trainee': 6128, 'hound': 6129, 'omarosa': 6130, 'realtor': 6131, 'accidental': 6132, 'briefcase': 6133, 'savor': 6134, 'mortify': 6135, 'crank': 6136, 'billionth': 6137, 'yank': 6138, 'capitalize': 6139, 'elfman': 6140, 'cher': 6141, 'sweatshop': 6142, 'steamy': 6143, 'distraction': 6144, 'kenny': 6145, 'mute': 6146, 'berate': 6147, 'separation': 6148, 'manhood': 6149, 'receipt': 6150, 'relevant': 6151, 'wiretapping': 6152, 'hbcu': 6153, 'imply': 6154, 'barriers': 6155, 'goodwill': 6156, 'induct': 6157, 'overwhelmingly': 6158, 'dependent': 6159, 'complimentary': 6160, 'xi': 6161, 'zayn': 6162, 'patience': 6163, 'eyebrows': 6164, 'infection': 6165, 'puke': 6166, 'selfies': 6167, 'naturally': 6168, 'czech': 6169, 'biopic': 6170, 'salvador': 6171, 'frontman': 6172, 'runners': 6173, 'hello': 6174, 'unrest': 6175, 'leone': 6176, 'buddies': 6177, 'reckon': 6178, 'kurds': 6179, 'amend': 6180, 'broth': 6181, 'pratt': 6182, 'crusade': 6183, 'greatness': 6184, 'despicable': 6185, 'blade': 6186, 'sperm': 6187, 'novels': 6188, 'byrne': 6189, 'snooze': 6190, 'pleasantly': 6191, 'unfit': 6192, 'yang': 6193, 'futuristic': 6194, 'python': 6195, 'duel': 6196, 'olympians': 6197, 'rad': 6198, 'coward': 6199, 'thoughtful': 6200, 'heroically': 6201, 'delegate': 6202, 'indoor': 6203, 'patti': 6204, 'lecture': 6205, 'manufacturer': 6206, 'cockpit': 6207, 'judicial': 6208, 'indie': 6209, 'guilt': 6210, 'stacey': 6211, 'unit': 6212, 'skinny': 6213, 'worsen': 6214, 'worthwhile': 6215, 'revolutionary': 6216, 'spooky': 6217, 'circular': 6218, 'sonic': 6219, 'stride': 6220, 'rituals': 6221, 'referendum': 6222, 'listeners': 6223, 'venice': 6224, 'twain': 6225, 'sunshine': 6226, 'disappearance': 6227, 'dunk': 6228, 'bystanders': 6229, 'array': 6230, 'motorcade': 6231, 'bicycle': 6232, 'brandon': 6233, 'impulse': 6234, 'shampoo': 6235, 'natalie': 6236, 'knees': 6237, 'leonard': 6238, 'haggard': 6239, 'spew': 6240, 'dea': 6241, 'robotic': 6242, 'devise': 6243, 'authenticity': 6244, 'sheeran': 6245, 'unsuspecting': 6246, 'hamburger': 6247, 'fascist': 6248, 'blitz': 6249, 'salads': 6250, 'soulmate': 6251, 'environmentalists': 6252, 'sour': 6253, 'ana': 6254, 'norwegian': 6255, 'shady': 6256, 'stepfather': 6257, 'islamophobic': 6258, 'rational': 6259, 'reuters': 6260, 'eastern': 6261, 'swipe': 6262, 'hurdle': 6263, 'spotify': 6264, 'risky': 6265, 'theorize': 6266, 'fearless': 6267, 'nationalism': 6268, 'fuller': 6269, 'wade': 6270, 'loretta': 6271, 'mull': 6272, 'befriend': 6273, 'angelou': 6274, 'conductor': 6275, 'tubman': 6276, 'simulate': 6277, 'ideal': 6278, 'firearm': 6279, 'wary': 6280, 'nun': 6281, 'pottery': 6282, 'uninformed': 6283, 'marie': 6284, 'claire': 6285, 'protein': 6286, 'upstairs': 6287, 'keynote': 6288, 'gymnast': 6289, 'musician': 6290, 'breyer': 6291, 'mailbox': 6292, 'piven': 6293, 'internship': 6294, 'attendance': 6295, 'wildest': 6296, 'aerobics': 6297, 'macaroni': 6298, 'episodes': 6299, 'tablets': 6300, 'catholics': 6301, 'gilbert': 6302, 'crosshairs': 6303, 'canonize': 6304, 'falafel': 6305, 'hay': 6306, 'curvy': 6307, 'palestine': 6308, 'oyster': 6309, 'expertise': 6310, 'vermont': 6311, 'doo': 6312, 'excruciate': 6313, 'ipad': 6314, 'jcpenney': 6315, 'contributions': 6316, 'folly': 6317, 'nursery': 6318, 'scrawl': 6319, 'resilience': 6320, 'hmo': 6321, 'concussions': 6322, 'atwood': 6323, 'mecca': 6324, 'backwards': 6325, 'wobbly': 6326, 'sew': 6327, 'barista': 6328, 'genitals': 6329, 'oakland': 6330, 'birthplace': 6331, 'smarter': 6332, 'cunning': 6333, 'corker': 6334, 'outdoors': 6335, 'mayhem': 6336, 'kimye': 6337, 'underfunded': 6338, 'outlets': 6339, 'contribution': 6340, 'romance': 6341, 'regime': 6342, 'checkout': 6343, 'excellence': 6344, 'transphobic': 6345, 'decker': 6346, 'revolutionize': 6347, 'gorilla': 6348, 'clone': 6349, 'applications': 6350, 'align': 6351, 'convey': 6352, 'columbus': 6353, 'unsustainable': 6354, 'canal': 6355, 'megan': 6356, 'pier': 6357, 'vase': 6358, 'hijab': 6359, 'dancer': 6360, 'wasteful': 6361, 'spur': 6362, 'wrist': 6363, 'peta': 6364, 'chimpanzees': 6365, 'subpoena': 6366, 'adelson': 6367, 'slit': 6368, 'periods': 6369, 'jenkins': 6370, 'weeknd': 6371, 'easiest': 6372, 'beast': 6373, 'ronda': 6374, 'rousey': 6375, 'truman': 6376, 'goof': 6377, 'imagination': 6378, 'perjury': 6379, 'consideration': 6380, 'reenact': 6381, 'merry': 6382, 'breakroom': 6383, 'versions': 6384, 'depiction': 6385, 'units': 6386, 'warden': 6387, 'typical': 6388, 'chapel': 6389, 'reinforce': 6390, 'intrigue': 6391, 'dixie': 6392, 'poker': 6393, 'michelangelo': 6394, 'agencies': 6395, 'constitute': 6396, 'storyline': 6397, 'daze': 6398, 'rattle': 6399, 'lax': 6400, 'chaplain': 6401, 'birther': 6402, 'mccartney': 6403, 'arrogant': 6404, 'lever': 6405, 'stigma': 6406, 'subtle': 6407, 'automatically': 6408, 'occupy': 6409, 'newsweek': 6410, 'prevail': 6411, 'unexpectedly': 6412, 'nearby': 6413, 'happier': 6414, 'notebook': 6415, 'tactics': 6416, 'durst': 6417, 'bigots': 6418, 'loneliness': 6419, 'insomnia': 6420, 'staten': 6421, 'hotshot': 6422, 'drinkers': 6423, 'chuckle': 6424, 'brainwash': 6425, 'throwback': 6426, 'contribute': 6427, 'cherub': 6428, 'yiannopoulos': 6429, 'cpac': 6430, 'audiences': 6431, 'getaway': 6432, 'paranoid': 6433, 'tilt': 6434, 'decorations': 6435, 'aryan': 6436, 'dozen': 6437, 'bribery': 6438, 'fertility': 6439, 'impale': 6440, 'swamp': 6441, 'crawford': 6442, 'transmit': 6443, 'confrontation': 6444, 'nudes': 6445, 'apatow': 6446, 'puddle': 6447, 'unlimited': 6448, 'symphony': 6449, 'budweiser': 6450, 'scotus': 6451, 'belly': 6452, 'illustrations': 6453, 'buyers': 6454, 'pharmaceutical': 6455, 'disneyland': 6456, 'franco': 6457, 'milosevic': 6458, 'karate': 6459, 'au': 6460, 'whiskey': 6461, 'richie': 6462, 'incidents': 6463, 'followers': 6464, 'rail': 6465, 'vegetables': 6466, 'evolutionary': 6467, 'rot': 6468, 'aca': 6469, 'schooler': 6470, 'weirdest': 6471, 'sickly': 6472, 'indigenous': 6473, 'belief': 6474, 'transit': 6475, 'kings': 6476, 'cockroach': 6477, 'entrepreneurial': 6478, 'morale': 6479, 'cafe': 6480, 'arrangement': 6481, 'portal': 6482, 'unbelievably': 6483, 'semitic': 6484, 'erotic': 6485, 'applause': 6486, 'liken': 6487, 'amtrak': 6488, 'crook': 6489, 'improvement': 6490, 'partygoer': 6491, 'mutant': 6492, 'lice': 6493, 'adapt': 6494, 'pharrell': 6495, 'columbia': 6496, 'bagel': 6497, 'collaborate': 6498, 'fountain': 6499, 'gag': 6500, 'pluto': 6501, 'grass': 6502, 'brew': 6503, 'tanker': 6504, 'maze': 6505, 'rev': 6506, 'heston': 6507, 'bigoted': 6508, 'mediocre': 6509, 'assemble': 6510, 'unwind': 6511, 'hermione': 6512, 'crab': 6513, 'adams': 6514, 'picasso': 6515, 'outlive': 6516, 'physicists': 6517, 'taxpayers': 6518, 'wonderland': 6519, 'glitch': 6520, 'languages': 6521, 'ironclad': 6522, 'mila': 6523, 'kunis': 6524, 'compel': 6525, 'retell': 6526, 'shoplift': 6527, 'binder': 6528, 'sh': 6529, 'nanny': 6530, 'churchgoer': 6531, 'crowdfunding': 6532, 'accidents': 6533, 'furniture': 6534, 'boeing': 6535, 'ode': 6536, 'loudest': 6537, 'bel': 6538, 'cryptic': 6539, 'payday': 6540, 'riff': 6541, 'honda': 6542, 'kesha': 6543, 'missiles': 6544, 'collector': 6545, 'cardinals': 6546, 'backstreet': 6547, 'sync': 6548, 'inconvenience': 6549, 'mild': 6550, 'hunk': 6551, 'consist': 6552, 'blair': 6553, 'outrageous': 6554, 'fuckin': 6555, 'registration': 6556, 'unconscious': 6557, 'flesh': 6558, 'discard': 6559, 'handler': 6560, 'atheists': 6561, 'norms': 6562, 'willie': 6563, 'scrutiny': 6564, 'fury': 6565, 'avocados': 6566, 'ocd': 6567, 'rogers': 6568, 'allan': 6569, 'situations': 6570, 'rope': 6571, 'shepard': 6572, 'champagne': 6573, 'bud': 6574, 'transport': 6575, 'taiwan': 6576, 'refute': 6577, 'marriages': 6578, 'manuscript': 6579, 'amusement': 6580, 'lovingly': 6581, 'gavin': 6582, 'fentanyl': 6583, 'athlete': 6584, 'unfairly': 6585, 'nina': 6586, 'emphasize': 6587, 'organizers': 6588, 'limbaugh': 6589, 'chapo': 6590, 'domino': 6591, 'meow': 6592, 'skyscraper': 6593, 'slick': 6594, 'dot': 6595, 'unsafe': 6596, 'interfaith': 6597, 'reynolds': 6598, 'lively': 6599, 'capabilities': 6600, 'hijack': 6601, 'grime': 6602, 'longoria': 6603, 'unexplained': 6604, 'printer': 6605, 'donna': 6606, 'homage': 6607, 'analysts': 6608, 'thousand': 6609, 'iggy': 6610, 'minnie': 6611, 'gerbil': 6612, 'acid': 6613, 'toenail': 6614, 'purdue': 6615, 'strengthen': 6616, 'belgium': 6617, 'parole': 6618, 'emojis': 6619, 'recognition': 6620, 'antonio': 6621, 'lament': 6622, 'cheesecake': 6623, 'tits': 6624, 'tractor': 6625, 'unpaid': 6626, 'yesterday': 6627, 'intricate': 6628, 'responsibilities': 6629, 'kamala': 6630, 'regulate': 6631, 'daredevil': 6632, 'transformation': 6633, 'flake': 6634, 'economics': 6635, 'roles': 6636, 'leftover': 6637, 'problematic': 6638, 'westminster': 6639, 'knit': 6640, 'laverne': 6641, 'ikea': 6642, 'educator': 6643, 'submarine': 6644, 'luna': 6645, 'embed': 6646, 'raw': 6647, 'identities': 6648, 'oprah': 6649, 'roker': 6650, 'oreos': 6651, 'seacrest': 6652, 'ratio': 6653, 'otto': 6654, 'warmbier': 6655, 'imprison': 6656, 'accessories': 6657, 'tokyo': 6658, 'warp': 6659, 'decorate': 6660, 'fever': 6661, 'ridley': 6662, 'checklist': 6663, 'voyager': 6664, 'cox': 6665, 'wahlberg': 6666, 'westworld': 6667, 'hippo': 6668, 'galactic': 6669, 'clinics': 6670, 'setback': 6671, 'tracy': 6672, 'glue': 6673, 'cameraman': 6674, 'incite': 6675, 'franchise': 6676, 'hostages': 6677, 'skate': 6678, 'investigators': 6679, 'lapd': 6680, 'hulu': 6681, 'wright': 6682, 'stronger': 6683, 'scholars': 6684, 'permanent': 6685, 'abuser': 6686, 'frisk': 6687, 'posters': 6688, 'significant': 6689, 'foreman': 6690, 'stanley': 6691, 'fetal': 6692, 'meaningful': 6693, 'avid': 6694, 'tantrum': 6695, 'torrent': 6696, 'jew': 6697, 'cart': 6698, 'consequence': 6699, 'abu': 6700, 'apparent': 6701, 'madison': 6702, 'operatives': 6703, 'sicken': 6704, 'vacuum': 6705, 'sainthood': 6706, 'coma': 6707, 'hundred': 6708, 'siege': 6709, 'feminine': 6710, 'carlos': 6711, 'talented': 6712, 'erections': 6713, 'fancy': 6714, 'antibiotics': 6715, 'civilian': 6716, 'commissioner': 6717, 'louder': 6718, 'animatronic': 6719, 'cower': 6720, 'parlor': 6721, 'unsolicited': 6722, 'postpartum': 6723, 'ashcroft': 6724, 'shackle': 6725, 'pawn': 6726, 'discourage': 6727, 'austria': 6728, 'midst': 6729, 'swimmer': 6730, 'historian': 6731, 'thief': 6732, 'guant': 6733, 'namo': 6734, 'stephanie': 6735, 'paternity': 6736, 'mayan': 6737, 'biological': 6738, 'symptom': 6739, 'withstand': 6740, 'coalition': 6741, 'nintendo': 6742, 'unused': 6743, 'boar': 6744, 'lawsuits': 6745, 'capitalism': 6746, 'capsule': 6747, 'infinitely': 6748, 'cock': 6749, 'weirded': 6750, 'fidel': 6751, 'salmonella': 6752, 'gotham': 6753, 'outdoor': 6754, 'ache': 6755, 'professionals': 6756, 'manchester': 6757, 'ufo': 6758, 'ptsd': 6759, 'mature': 6760, 'tutor': 6761, 'oust': 6762, 'burial': 6763, 'bakery': 6764, 'sword': 6765, 'toro': 6766, 'onstage': 6767, 'kinda': 6768, 'horde': 6769, 'blunt': 6770, 'bryant': 6771, 'dome': 6772, 'disagree': 6773, 'embark': 6774, 'qaddafi': 6775, 'tate': 6776, 'vitamin': 6777, 'decorative': 6778, 'tray': 6779, 'incline': 6780, 'cardinal': 6781, 'ostracize': 6782, 'faggot': 6783, 'danes': 6784, 'taxpayer': 6785, 'defendant': 6786, 'critique': 6787, 'masculinity': 6788, 'wizard': 6789, 'malaysia': 6790, 'radar': 6791, 'beto': 6792, 'ax': 6793, 'lapse': 6794, 'bolivia': 6795, 'rangers': 6796, 'gaze': 6797, 'stockpile': 6798, 'soy': 6799, 'receptionist': 6800, 'swan': 6801, 'pineapple': 6802, 'panthers': 6803, 'nc': 6804, 'spare': 6805, 'hefner': 6806, 'hype': 6807, 'pt': 6808, 'useless': 6809, 'hangover': 6810, 'immoral': 6811, 'bloggers': 6812, 'recess': 6813, 'athletic': 6814, 'advocacy': 6815, 'certainly': 6816, 'painter': 6817, 'disgruntle': 6818, 'joker': 6819, 'idol': 6820, 'anthropologists': 6821, 'lowe': 6822, 'homeowner': 6823, 'brussels': 6824, 'krishna': 6825, 'partial': 6826, 'penguins': 6827, 'werewolf': 6828, 'pioneer': 6829, 'vigil': 6830, 'robber': 6831, 'rug': 6832, 'intervention': 6833, 'vikings': 6834, 'parrot': 6835, 'frederick': 6836, 'exploit': 6837, 'bloat': 6838, 'cater': 6839, 'portion': 6840, 'obscure': 6841, 'rogue': 6842, 'uneasy': 6843, 'autistic': 6844, 'audubon': 6845, 'copycat': 6846, 'ronald': 6847, 'potatoes': 6848, 'cleanse': 6849, 'adjacent': 6850, 'zealand': 6851, 'culinary': 6852, 'allergic': 6853, 'caribbean': 6854, 'roe': 6855, 'providers': 6856, 'kinds': 6857, 'protective': 6858, 'vital': 6859, 'fur': 6860, 'disruption': 6861, 'les': 6862, 'newman': 6863, 'starter': 6864, 'aguilera': 6865, 'overhear': 6866, 'melinda': 6867, 'interviewer': 6868, 'hawaiian': 6869, 'gal': 6870, 'peas': 6871, 'millennia': 6872, 'personalize': 6873, 'outsider': 6874, 'dinklage': 6875, 'jogger': 6876, 'lesbians': 6877, 'patio': 6878, 'scarborough': 6879, 'kremlin': 6880, 'marital': 6881, 'contradict': 6882, 'benefactor': 6883, 'vampire': 6884, 'insiders': 6885, 'vessel': 6886, 'manson': 6887, 'glacier': 6888, 'lifeguard': 6889, 'thru': 6890, 'nightmares': 6891, 'jihad': 6892, 'tampa': 6893, 'tidal': 6894, 'hospitals': 6895, 'refusal': 6896, 'larva': 6897, 'watcher': 6898, 'aquaman': 6899, 'mastectomy': 6900, 'tomb': 6901, 'tolerate': 6902, 'andrea': 6903, 'margarita': 6904, 'gunn': 6905, 'sibling': 6906, 'skateboard': 6907, 'ira': 6908, 'flow': 6909, 'icymi': 6910, 'tropical': 6911, 'nativity': 6912, 'meteorologist': 6913, 'thiel': 6914, 'antidepressant': 6915, 'parker': 6916, 'sophie': 6917, 'goose': 6918, 'ernest': 6919, 'execs': 6920, 'civilization': 6921, 'outlet': 6922, 'moscow': 6923, 'churchill': 6924, 'toothbrush': 6925, 'inherent': 6926, 'compulsive': 6927, 'practically': 6928, 'unimpressed': 6929, 'relatively': 6930, 'mandate': 6931, 'brien': 6932, 'elk': 6933, 'rosie': 6934, 'donnell': 6935, 'fumble': 6936, 'ponytail': 6937, 'fog': 6938, 'curly': 6939, 'quaker': 6940, 'somali': 6941, 'foe': 6942, 'fianc': 6943, 'momentum': 6944, 'luck': 6945, 'whoop': 6946, 'brock': 6947, 'eternal': 6948, 'pabst': 6949, 'prospective': 6950, 'metaphor': 6951, 'pros': 6952, 'blissfully': 6953, 'ref': 6954, 'cannabis': 6955, 'appal': 6956, 'fiercely': 6957, 'tamir': 6958, 'intelligent': 6959, 'aluminum': 6960, 'cancellation': 6961, 'distraught': 6962, 'tight': 6963, 'victor': 6964, 'reversal': 6965, 'analyze': 6966, 'beckham': 6967, 'someday': 6968, 'bridal': 6969, 'behaviors': 6970, 'dolls': 6971, 'halliburton': 6972, 'sneaky': 6973, 'tail': 6974, 'explosions': 6975, 'crane': 6976, 'slate': 6977, 'robbers': 6978, 'tai': 6979, 'chi': 6980, 'tailor': 6981, 'lipstick': 6982, 'spank': 6983, 'superheroes': 6984, 'zoologists': 6985, 'ratner': 6986, 'defund': 6987, 'enrollment': 6988, 'siri': 6989, 'temperature': 6990, 'finals': 6991, 'competent': 6992, 'afro': 6993, 'slogans': 6994, 'strategic': 6995, 'crumb': 6996, 'pastry': 6997, 'sizzle': 6998, 'rooftop': 6999, 'bomer': 7000, 'privately': 7001, 'reelection': 7002, 'boundaries': 7003, 'posit': 7004, 'stump': 7005, 'stanford': 7006, 'darfur': 7007, 'posthumous': 7008, 'diagram': 7009, 'containers': 7010, 'reed': 7011, 'heist': 7012, 'dumbest': 7013, 'fascism': 7014, 'absolute': 7015, 'minneapolis': 7016, 'hospitalization': 7017, 'vague': 7018, 'shaky': 7019, 'overly': 7020, 'oasis': 7021, 'hypothetical': 7022, 'amputee': 7023, 'orbit': 7024, 'sufferer': 7025, 'fierce': 7026, 'personnel': 7027, 'hazard': 7028, 'basilica': 7029, 'sane': 7030, 'garcia': 7031, 'illnesses': 7032, 'obsolete': 7033, 'roseanne': 7034, 'geographic': 7035, 'gamer': 7036, 'memphis': 7037, 'temp': 7038, 'judgment': 7039, 'zen': 7040, 'regional': 7041, 'baskin': 7042, 'courtroom': 7043, 'blossom': 7044, 'starr': 7045, 'communists': 7046, 'woo': 7047, 'bling': 7048, 'unravel': 7049, 'prophet': 7050, 'annie': 7051, 'foul': 7052, 'divert': 7053, 'tarantino': 7054, 'ants': 7055, 'scaramucci': 7056, 'legally': 7057, 'nike': 7058, 'milwaukee': 7059, 'methane': 7060, 'bailiff': 7061, 'methods': 7062, 'employer': 7063, 'strangle': 7064, 'duncan': 7065, 'protagonist': 7066, 'abruptly': 7067, 'precede': 7068, 'cautiously': 7069, 'daytime': 7070, 'stances': 7071, 'cardi': 7072, 'philippines': 7073, 'bollywood': 7074, 'mc': 7075, 'permanently': 7076, 'inspirational': 7077, 'residence': 7078, 'corrupt': 7079, 'couric': 7080, 'aly': 7081, 'raisman': 7082, 'hhs': 7083, 'mason': 7084, 'sprint': 7085, 'persona': 7086, 'elsewhere': 7087, 'playboy': 7088, 'bounty': 7089, 'hb': 7090, 'dwell': 7091, 'breed': 7092, 'copyright': 7093, 'handicap': 7094, 'fiona': 7095, 'cincinnati': 7096, 'stevie': 7097, 'whitney': 7098, 'houseguest': 7099, 'interpretation': 7100, 'applaud': 7101, 'hannah': 7102, 'freaky': 7103, 'fearful': 7104, 'porter': 7105, 'diamonds': 7106, 'pollsters': 7107, 'terri': 7108, 'spatter': 7109, 'ts': 7110, 'giamatti': 7111, 'paycheck': 7112, 'civic': 7113, 'terrain': 7114, 'trudeau': 7115, 'retailers': 7116, 'reduction': 7117, 'goats': 7118, 'transmission': 7119, 'arabs': 7120, 'wsj': 7121, 'inheritance': 7122, 'peet': 7123, 'boko': 7124, 'haram': 7125, 'gasoline': 7126, 'kalanick': 7127, 'pedestrians': 7128, 'allure': 7129, 'expansive': 7130, 'altman': 7131, 'angle': 7132, 'rec': 7133, 'baptist': 7134, 'meatless': 7135, 'hybrid': 7136, 'lib': 7137, 'intensify': 7138, 'demolition': 7139, 'axelrod': 7140, 'promo': 7141, 'motherfucker': 7142, 'inslee': 7143, 'birthdays': 7144, 'movements': 7145, 'digest': 7146, 'blueprint': 7147, 'alexa': 7148, 'earl': 7149, 'exasperate': 7150, 'frenzy': 7151, 'anticipation': 7152, 'stalin': 7153, 'wink': 7154, 'shorten': 7155, 'lana': 7156, 'rey': 7157, 'honeymoon': 7158, 'reprimand': 7159, 'drunkenly': 7160, 'shipwreck': 7161, 'warrant': 7162, 'fec': 7163, 'recruitment': 7164, 'adidas': 7165, 'elle': 7166, 'airbrush': 7167, 'altogether': 7168, 'holt': 7169, 'reiterate': 7170, 'juggler': 7171, 'unfair': 7172, 'stuf': 7173, 'treadmill': 7174, 'hastert': 7175, 'possess': 7176, 'goblin': 7177, 'rabbi': 7178, 'splinter': 7179, 'downloadable': 7180, 'lebanon': 7181, 'captive': 7182, 'whiny': 7183, 'bailout': 7184, 'amas': 7185, 'shoppers': 7186, 'fracture': 7187, 'lear': 7188, 'elsa': 7189, 'farley': 7190, 'screenwriting': 7191, 'snub': 7192, 'poop': 7193, 'penguin': 7194, 'kathy': 7195, 'beside': 7196, 'ink': 7197, 'capacity': 7198, 'shamelessly': 7199, 'jojo': 7200, 'pundit': 7201, 'maple': 7202, 'adversity': 7203, 'angrily': 7204, 'mp': 7205, 'tantalize': 7206, 'mcbeal': 7207, 'trey': 7208, 'gowdy': 7209, 'nigeria': 7210, 'evangelicals': 7211, 'ghastly': 7212, 'ounces': 7213, 'hairstylist': 7214, 'theft': 7215, 'caste': 7216, 'widen': 7217, 'lend': 7218, 'expectant': 7219, 'assistants': 7220, 'fieri': 7221, 'demo': 7222, 'whoopi': 7223, 'surgeries': 7224, 'tremble': 7225, 'shrine': 7226, 'julianne': 7227, 'fonda': 7228, 'germans': 7229, 'misty': 7230, 'blender': 7231, 'lynn': 7232, 'viagra': 7233, 'trebek': 7234, 'cardiac': 7235, 'rampant': 7236, 'hickenlooper': 7237, 'usain': 7238, 'hardy': 7239, 'unapologetically': 7240, 'defibrillator': 7241, 'mutilation': 7242, 'vaccinate': 7243, 'underway': 7244, 'relive': 7245, 'wilmer': 7246, 'merely': 7247, 'suitors': 7248, 'unprovoked': 7249, 'occupation': 7250, 'kotter': 7251, 'attic': 7252, 'port': 7253, 'ranch': 7254, 'compound': 7255, 'makers': 7256, 'pike': 7257, 'conceive': 7258, 'bombshell': 7259, 'avery': 7260, 'ambush': 7261, 'magnet': 7262, 'klobuchar': 7263, 'alfred': 7264, 'hitchcock': 7265, 'smallest': 7266, 'glitter': 7267, 'eyeliner': 7268, 'darker': 7269, 'psyche': 7270, 'jada': 7271, 'pinkett': 7272, 'flub': 7273, 'diabetic': 7274, 'legitimately': 7275, 'triumph': 7276, 'arrange': 7277, 'enthusiasm': 7278, 'tornadoes': 7279, 'earnest': 7280, 'hale': 7281, 'veep': 7282, 'menace': 7283, 'oversized': 7284, 'shotgun': 7285, 'campuses': 7286, 'lantern': 7287, 'authoritarian': 7288, 'hunchback': 7289, 'hasbro': 7290, 'institutionalize': 7291, 'chilly': 7292, 'meditate': 7293, 'flyer': 7294, 'heidi': 7295, 'imperfect': 7296, 'macarthur': 7297, 'indonesia': 7298, 'gamers': 7299, 'rejoice': 7300, 'wits': 7301, 'thor': 7302, 'neon': 7303, 'devices': 7304, 'hallmark': 7305, 'unwanted': 7306, 'saddest': 7307, 'gluten': 7308, 'roadside': 7309, 'upright': 7310, 'clueless': 7311, 'fare': 7312, 'fm': 7313, 'robbie': 7314, 'macklemore': 7315, 'immune': 7316, 'liberate': 7317, 'gunfire': 7318, 'adderall': 7319, 'biker': 7320, 'obstacle': 7321, 'mcadams': 7322, 'gasp': 7323, 'irony': 7324, 'cheddar': 7325, 'sustainability': 7326, 'operative': 7327, 'bleary': 7328, 'destructive': 7329, 'cybersecurity': 7330, 'recipient': 7331, 'sickness': 7332, 'snatch': 7333, 'gerber': 7334, 'formula': 7335, 'healer': 7336, 'infowars': 7337, 'precedent': 7338, 'grin': 7339, 'bigotry': 7340, 'particle': 7341, 'creatures': 7342, 'giddy': 7343, 'filmmakers': 7344, 'dull': 7345, 'psychologist': 7346, 'lunar': 7347, 'rib': 7348, 'platter': 7349, 'cane': 7350, 'frontier': 7351, 'sow': 7352, 'maintenance': 7353, 'homecoming': 7354, 'bun': 7355, 'periodic': 7356, 'elements': 7357, 'bittersweet': 7358, 'fusion': 7359, 'doughboy': 7360, 'ghostbusters': 7361, 'tolerance': 7362, 'roosevelt': 7363, 'twine': 7364, 'vr': 7365, 'cheetos': 7366, 'barn': 7367, 'tyrannical': 7368, 'perceptions': 7369, 'valerie': 7370, 'ramsey': 7371, 'roman': 7372, 'tortoise': 7373, 'malik': 7374, 'detonate': 7375, 'contractor': 7376, 'mutual': 7377, 'appreciation': 7378, 'albert': 7379, 'depth': 7380, 'veil': 7381, 'maxine': 7382, 'toilets': 7383, 'nurture': 7384, 'booby': 7385, 'hank': 7386, 'omelet': 7387, 'ellis': 7388, 'willow': 7389, 'alligator': 7390, 'ufos': 7391, 'classy': 7392, 'ugliest': 7393, 'newlywed': 7394, 'lighter': 7395, 'demon': 7396, 'opener': 7397, 'libraries': 7398, 'cheetah': 7399, 'bridesmaids': 7400, 'il': 7401, 'cordless': 7402, 'reno': 7403, 'confusion': 7404, 'reception': 7405, 'marketers': 7406, 'renewal': 7407, 'reconsider': 7408, 'radiator': 7409, 'salman': 7410, 'mel': 7411, 'belittle': 7412, 'tirade': 7413, 'paxton': 7414, 'rude': 7415, 'broadcaster': 7416, 'upbeat': 7417, 'addictive': 7418, 'meter': 7419, 'hispanics': 7420, 'bumble': 7421, 'infinity': 7422, 'scarf': 7423, 'vaxxers': 7424, 'deniers': 7425, 'hedgehog': 7426, 'tribunal': 7427, 'kilborn': 7428, 'disavow': 7429, 'ninth': 7430, 'negotiations': 7431, 'wince': 7432, 'thigh': 7433, 'trooper': 7434, 'publicity': 7435, 'warrior': 7436, 'thirst': 7437, 'antidepressants': 7438, 'blurry': 7439, 'trench': 7440, 'potentially': 7441, 'prose': 7442, 'tycoon': 7443, 'physician': 7444, 'limbo': 7445, 'chester': 7446, 'morph': 7447, 'hamster': 7448, 'policeman': 7449, 'biography': 7450, 'thread': 7451, 'dismay': 7452, 'believable': 7453, 'jackie': 7454, 'chan': 7455, 'kangaroo': 7456, 'toner': 7457, 'toppings': 7458, 'injustice': 7459, 'incest': 7460, 'navarro': 7461, 'adolescent': 7462, 'tsunami': 7463, 'dagger': 7464, 'pleas': 7465, 'dana': 7466, 'gentrify': 7467, 'departure': 7468, 'amnesty': 7469, 'clarity': 7470, 'statistically': 7471, 'residency': 7472, 'multicultural': 7473, 'radicalize': 7474, 'elder': 7475, 'hotness': 7476, 'lump': 7477, 'environmentalism': 7478, 'faculty': 7479, 'mercilessly': 7480, 'pointer': 7481, 'elf': 7482, 'glaze': 7483, 'prego': 7484, 'neighborhoods': 7485, 'magically': 7486, 'stoner': 7487, 'felony': 7488, 'possession': 7489, 'radiant': 7490, 'digestive': 7491, 'rogen': 7492, 'roster': 7493, 'penalize': 7494, 'kurdish': 7495, 'intensity': 7496, 'bulbs': 7497, 'denier': 7498, 'docs': 7499, 'iraqis': 7500, 'command': 7501, 'organ': 7502, 'playground': 7503, 'bastards': 7504, 'senseless': 7505, 'preach': 7506, 'ceremonial': 7507, 'luggage': 7508, 'enthusiast': 7509, 'challenger': 7510, 'inc': 7511, 'looters': 7512, 'rocker': 7513, 'participants': 7514, 'chaffetz': 7515, 'governments': 7516, 'lohan': 7517, 'maturity': 7518, 'sephora': 7519, 'splurge': 7520, 'compass': 7521, 'margins': 7522, 'lettuce': 7523, 'evidently': 7524, 'shockingly': 7525, 'slang': 7526, 'bask': 7527, 'urgent': 7528, 'reincarnation': 7529, 'vigilante': 7530, 'dehydration': 7531, 'dexter': 7532, 'comcast': 7533, 'assets': 7534, 'clippers': 7535, 'championship': 7536, 'popeyes': 7537, 'edison': 7538, 'riders': 7539, 'indeed': 7540, 'grads': 7541, 'edible': 7542, 'motivation': 7543, 'subsidies': 7544, 'advertiser': 7545, 'deepen': 7546, 'skulls': 7547, 'accomplishment': 7548, 'harness': 7549, 'actively': 7550, 'serpent': 7551, 'socialist': 7552, 'frazzle': 7553, 'nostalgia': 7554, 'istanbul': 7555, 'heirloom': 7556, 'depp': 7557, 'theorist': 7558, 'rosenstein': 7559, 'intercept': 7560, 'unnoticed': 7561, 'nader': 7562, 'statistics': 7563, 'trumpism': 7564, 'succumb': 7565, 'dynamic': 7566, 'brake': 7567, 'wreak': 7568, 'bathrooms': 7569, 'hotter': 7570, 'twitch': 7571, 'longest': 7572, 'destinations': 7573, 'dolled': 7574, 'impart': 7575, 'colmes': 7576, 'pub': 7577, 'toyota': 7578, 'authorize': 7579, 'collateral': 7580, 'paramedic': 7581, 'revel': 7582, 'index': 7583, 'claw': 7584, 'fireman': 7585, 'superstitious': 7586, 'canvas': 7587, 'indoors': 7588, 'pantry': 7589, 'cartoonist': 7590, 'trilogy': 7591, 'hubble': 7592, 'collins': 7593, 'roam': 7594, 'reparations': 7595, 'impassioned': 7596, 'skit': 7597, 'greatly': 7598, 'influencer': 7599, 'unafraid': 7600, 'trainwreck': 7601, 'jot': 7602, 'margin': 7603, 'mockingbird': 7604, 'higgins': 7605, 'errors': 7606, 'nicer': 7607, 'alphabet': 7608, 'ignorance': 7609, 'leverage': 7610, 'iv': 7611, 'executioner': 7612, 'supercuts': 7613, 'airliner': 7614, 'iphones': 7615, 'stine': 7616, 'goosebumps': 7617, 'inspector': 7618, 'freeway': 7619, 'snowboard': 7620, 'appropriate': 7621, 'sistine': 7622, 'letterman': 7623, 'mona': 7624, 'yeah': 7625, 'petrify': 7626, 'petsmart': 7627, 'partially': 7628, 'recliner': 7629, 'den': 7630, 'handwrite': 7631, 'controller': 7632, 'richest': 7633, 'humiliation': 7634, 'conjoin': 7635, 'gitmo': 7636, 'smollett': 7637, 'lewandowski': 7638, 'placebo': 7639, 'yoko': 7640, 'ono': 7641, 'premium': 7642, 'binary': 7643, 'honolulu': 7644, 'flare': 7645, 'kung': 7646, 'dolby': 7647, 'deconstruct': 7648, 'montage': 7649, 'divine': 7650, 'pundits': 7651, 'unbalance': 7652, 'medications': 7653, 'incapable': 7654, 'husky': 7655, 'effectively': 7656, 'inhofe': 7657, 'alice': 7658, 'misogyny': 7659, 'quarterback': 7660, 'fatigue': 7661, 'lakes': 7662, 'microphone': 7663, 'lightly': 7664, 'intergalactic': 7665, 'peasant': 7666, 'limbs': 7667, 'fume': 7668, 'chubby': 7669, 'avatar': 7670, 'narrator': 7671, 'moana': 7672, 'airlift': 7673, 'whine': 7674, 'nonessential': 7675, 'pleasures': 7676, 'activate': 7677, 'colossal': 7678, 'reptile': 7679, 'popeye': 7680, 'immersive': 7681, 'flicker': 7682, 'brawl': 7683, 'wealthiest': 7684, 'billionaires': 7685, 'costco': 7686, 'relaxation': 7687, 'paddleboarder': 7688, 'mercy': 7689, 'someplace': 7690, 'unsuccessful': 7691, 'sail': 7692, 'passersby': 7693, 'ravioli': 7694, 'reintroduce': 7695, 'retaliation': 7696, 'muse': 7697, 'contaminate': 7698, 'opportunities': 7699, 'londoners': 7700, 'polite': 7701, 'bald': 7702, 'earmark': 7703, 'cannonball': 7704, 'scope': 7705, 'trivia': 7706, 'spacecraft': 7707, 'postmaster': 7708, 'testament': 7709, 'oatmeal': 7710, 'necklace': 7711, 'gloves': 7712, 'patricia': 7713, 'profound': 7714, 'nigel': 7715, 'mash': 7716, 'chimp': 7717, 'admire': 7718, 'restart': 7719, 'cricket': 7720, 'wearable': 7721, 'spontaneously': 7722, 'cr': 7723, 'foreclose': 7724, 'savory': 7725, 'confidently': 7726, 'amuse': 7727, 'dryer': 7728, 'sweden': 7729, 'imperative': 7730, 'housefly': 7731, 'virginity': 7732, 'swab': 7733, 'unman': 7734, 'conveyor': 7735, 'impregnate': 7736, 'chargers': 7737, 'transphobia': 7738, 'sweaters': 7739, 'concentration': 7740, 'reprise': 7741, 'defiance': 7742, 'hyundai': 7743, 'statistic': 7744, 'inventor': 7745, 'gchat': 7746, 'stability': 7747, 'noodle': 7748, 'hardship': 7749, 'acronym': 7750, 'pivotal': 7751, 'voicemail': 7752, 'mainly': 7753, 'elevate': 7754, 'elaine': 7755, 'unread': 7756, 'imaginary': 7757, 'twenty': 7758, 'judith': 7759, 'bolster': 7760, 'wistful': 7761, 'boggle': 7762, 'narcissist': 7763, 'shack': 7764, 'fuckup': 7765, 'grisham': 7766, 'surely': 7767, 'tons': 7768, 'pattinson': 7769, 'gravestone': 7770, 'excerpt': 7771, 'inaction': 7772, 'ominous': 7773, 'webpage': 7774, 'cumberbatch': 7775, 'zombie': 7776, 'dogg': 7777, 'vie': 7778, 'roadmap': 7779, 'albuquerque': 7780, 'blindfold': 7781, 'mountaintop': 7782, 'startle': 7783, 'kicker': 7784, 'carrot': 7785, 'retiree': 7786, 'juror': 7787, 'gibson': 7788, 'iranians': 7789, 'gehry': 7790, 'ripe': 7791, 'avocado': 7792, 'charlton': 7793, 'fedex': 7794, 'apartheid': 7795, 'contraception': 7796, 'kline': 7797, 'chatter': 7798, 'resemblance': 7799, 'misuse': 7800, 'applicants': 7801, 'disparage': 7802, 'ness': 7803, 'ix': 7804, 'administrators': 7805, 'mosques': 7806, 'replica': 7807, 'morocco': 7808, 'unstable': 7809, 'linda': 7810, 'pajama': 7811, 'absorb': 7812, 'recital': 7813, 'forensic': 7814, 'crossroads': 7815, 'kool': 7816, 'websites': 7817, 'advertisement': 7818, 'harrelson': 7819, 'dumber': 7820, 'nonviolent': 7821, 'warlord': 7822, 'speculation': 7823, 'obstruct': 7824, 'loner': 7825, 'alicia': 7826, 'secondhand': 7827, 'arnold': 7828, 'apprentice': 7829, 'catchphrase': 7830, 'glamorous': 7831, 'wasserman': 7832, 'lenders': 7833, 'indicator': 7834, 'subcommittee': 7835, 'li': 7836, 'reschedule': 7837, 'uc': 7838, 'meyer': 7839, 'lockheed': 7840, 'alison': 7841, 'consistent': 7842, 'mannered': 7843, 'debts': 7844, 'defraud': 7845, 'kenyan': 7846, 'relocate': 7847, 'selma': 7848, 'jepsen': 7849, 'constituent': 7850, 'noxious': 7851, 'offenders': 7852, 'feig': 7853, 'harold': 7854, 'elton': 7855, 'heath': 7856, 'insecurities': 7857, 'consciousness': 7858, 'moviegoer': 7859, 'projections': 7860, 'crossover': 7861, 'ing': 7862, 'manic': 7863, 'michelin': 7864, 'needy': 7865, 'jog': 7866, 'medication': 7867, 'velvet': 7868, 'adrenaline': 7869, 'beverage': 7870, 'fitzgerald': 7871, 'vanity': 7872, 'scholl': 7873, 'particularly': 7874, 'unpublished': 7875, 'transparent': 7876, 'embody': 7877, 'trout': 7878, 'tighter': 7879, 'perez': 7880, 'prehistoric': 7881, 'technicality': 7882, 'stimulus': 7883, 'burma': 7884, 'somebody': 7885, 'guatemalan': 7886, 'arch': 7887, 'snarky': 7888, 'brie': 7889, 'brightest': 7890, 'hiroshima': 7891, 'sexting': 7892, 'intake': 7893, 'costner': 7894, 'cluster': 7895, 'tract': 7896, 'infections': 7897, 'wallace': 7898, 'desist': 7899, 'timeout': 7900, 'warriors': 7901, 'vindicate': 7902, 'kenneth': 7903, 'jumper': 7904, 'beautifully': 7905, 'meteor': 7906, 'productions': 7907, 'premonition': 7908, 'peters': 7909, 'semester': 7910, 'passionate': 7911, 'infiltrate': 7912, 'climbers': 7913, 'propaganda': 7914, 'momentarily': 7915, 'pup': 7916, 'rabid': 7917, 'vendor': 7918, 'conrad': 7919, 'fe': 7920, 'dipshit': 7921, 'protestors': 7922, 'idly': 7923, 'coldplay': 7924, 'notifications': 7925, 'whoever': 7926, 'chapman': 7927, 'dodgers': 7928, 'azalea': 7929, 'derange': 7930, 'cherish': 7931, 'watson': 7932, 'dissident': 7933, 'choir': 7934, 'repress': 7935, 'emotion': 7936, 'voyage': 7937, 'ruler': 7938, 'washer': 7939, 'blonde': 7940, 'topics': 7941, 'leftist': 7942, 'heckler': 7943, 'cnbc': 7944, 'porno': 7945, 'fishermen': 7946, 'carolinas': 7947, 'defensive': 7948, 'confinement': 7949, 'mayonnaise': 7950, 'po': 7951, 'shrivel': 7952, 'vine': 7953, 'hospitalize': 7954, 'waterboarding': 7955, 'meddle': 7956, 'heartedly': 7957, 'gigi': 7958, 'aggression': 7959, 'computers': 7960, 'festivals': 7961, 'ascent': 7962, 'rendition': 7963, 'degrasse': 7964, 'psychopath': 7965, 'nonverbal': 7966, 'lamp': 7967, 'scarlett': 7968, 'johansson': 7969, 'truther': 7970, 'roland': 7971, 'optical': 7972, 'brandy': 7973, 'crestfallen': 7974, 'frappuccino': 7975, 'libido': 7976, 'pun': 7977, 'algerian': 7978, 'harlem': 7979, 'pursuit': 7980, 'chemicals': 7981, 'waltz': 7982, 'biologist': 7983, 'scenic': 7984, 'atomic': 7985, 'skeptical': 7986, 'youngest': 7987, 'unconditional': 7988, 'halls': 7989, 'valentines': 7990, 'ricky': 7991, 'lupita': 7992, 'nyong': 7993, 'alongside': 7994, 'whop': 7995, 'meltdown': 7996, 'explosives': 7997, 'batteries': 7998, 'enrich': 7999, 'uranium': 8000, 'inspection': 8001, 'americas': 8002, 'flick': 8003, 'harmony': 8004, 'laundromat': 8005, 'strife': 8006, 'idaho': 8007, 'hebdo': 8008, 'symbolic': 8009, 'maiden': 8010, 'hunky': 8011, 'inconsiderate': 8012, 'eradicate': 8013, 'proximity': 8014, 'aircraft': 8015, 'baylor': 8016, 'deforestation': 8017, 'webster': 8018, 'evaluate': 8019, 'emancipate': 8020, 'unstoppable': 8021, 'gunpoint': 8022, 'niro': 8023, 'idle': 8024, 'cab': 8025, 'desks': 8026, 'mayweather': 8027, 'chunk': 8028, 'morally': 8029, 'historically': 8030, 'planets': 8031, 'submissions': 8032, 'weld': 8033, 'dispel': 8034, 'neurotic': 8035, 'riddle': 8036, 'meteorite': 8037, 'unsung': 8038, 'plaque': 8039, 'snowmobile': 8040, 'span': 8041, 'wreckage': 8042, 'dhabi': 8043, 'labour': 8044, 'enroll': 8045, 'plaza': 8046, 'octavia': 8047, 'artistic': 8048, 'grudgingly': 8049, 'romp': 8050, 'jerky': 8051, 'santana': 8052, 'gregg': 8053, 'toby': 8054, 'brazilians': 8055, 'shakespeare': 8056, 'blacklight': 8057, 'topless': 8058, 'lookalike': 8059, 'rivera': 8060, 'silvio': 8061, 'berlusconi': 8062, 'rbg': 8063, 'oddly': 8064, 'wwi': 8065, 'puberty': 8066, 'partisan': 8067, 'enrol': 8068, 'pooh': 8069, 'peek': 8070, 'blackout': 8071, 'disembody': 8072, 'warmth': 8073, 'rivalry': 8074, 'dory': 8075, 'cantaloupe': 8076, 'kuwait': 8077, 'renounce': 8078, 'titans': 8079, 'sacred': 8080, 'antibiotic': 8081, 'lehrer': 8082, 'edward': 8083, 'clancy': 8084, 'rhyme': 8085, 'silo': 8086, 'realm': 8087, 'nationalists': 8088, 'entourage': 8089, 'allergy': 8090, 'mascot': 8091, 'raisin': 8092, 'wynn': 8093, 'conor': 8094, 'mcgregor': 8095, 'collude': 8096, 'vergara': 8097, 'implore': 8098, 'migration': 8099, 'henderson': 8100, 'sully': 8101, 'detectives': 8102, 'blend': 8103, 'cabinets': 8104, 'posture': 8105, 'selfless': 8106, 'ducklings': 8107, 'preachers': 8108, 'divest': 8109, 'graphics': 8110, 'icons': 8111, 'loot': 8112, 'steakhouse': 8113, 'patriotic': 8114, 'detach': 8115, 'rerun': 8116, 'corpses': 8117, 'lid': 8118, 'dorner': 8119, 'crimea': 8120, 'euthanize': 8121, 'hatchimals': 8122, 'abramson': 8123, 'northeast': 8124, 'censorship': 8125, 'stepmom': 8126, 'guillermo': 8127, 'inclusive': 8128, 'indulge': 8129, 'misplace': 8130, 'mahmoud': 8131, 'sopranos': 8132, 'redford': 8133, 'length': 8134, 'jeter': 8135, 'degeneres': 8136, 'nudity': 8137, 'hi': 8138, 'hindus': 8139, 'stairs': 8140, 'enemies': 8141, 'vehicles': 8142, 'positively': 8143, 'pry': 8144, 'lease': 8145, 'marble': 8146, 'axis': 8147, 'ribbon': 8148, 'battery': 8149, 'helplessly': 8150, 'mud': 8151, 'communion': 8152, 'wafer': 8153, 'rearrange': 8154, 'mastermind': 8155, 'sideline': 8156, 'aerosmith': 8157, 'resurface': 8158, 'sushi': 8159, 'careen': 8160, 'inhumane': 8161, 'dribble': 8162, 'fad': 8163, 'vein': 8164, 'extinguisher': 8165, 'routines': 8166, 'superdelegate': 8167, 'unauthorized': 8168, 'erika': 8169, 'smiley': 8170, 'revelations': 8171, 'stud': 8172, 'rourke': 8173, 'humongous': 8174, 'gleefully': 8175, 'eichner': 8176, 'boogie': 8177, 'thorny': 8178, 'marshmallow': 8179, 'breathtaking': 8180, 'airstrike': 8181, 'faithful': 8182, 'mural': 8183, 'filmmaker': 8184, 'predictor': 8185, 'sunset': 8186, 'unbelievable': 8187, 'outlast': 8188, 'thorough': 8189, 'europeans': 8190, 'besiege': 8191, 'prequel': 8192, 'promposal': 8193, 'boredom': 8194, 'woefully': 8195, 'dazzle': 8196, 'safest': 8197, 'paleontologists': 8198, 'download': 8199, 'flaunt': 8200, 'geek': 8201, 'dishwasher': 8202, 'ego': 8203, 'remix': 8204, 'fabulous': 8205, 'inspectors': 8206, 'compose': 8207, 'kobach': 8208, 'uptick': 8209, 'bead': 8210, 'beginner': 8211, 'ding': 8212, 'supermodel': 8213, 'candlelight': 8214, 'coolest': 8215, 'newton': 8216, 'chiefs': 8217, 'speculate': 8218, 'douglass': 8219, 'gambit': 8220, 'alaskan': 8221, 'technicians': 8222, 'consulate': 8223, 'ian': 8224, 'mckellen': 8225, 'albright': 8226, 'brita': 8227, 'elena': 8228, 'excessive': 8229, 'blacklivesmatter': 8230, 'dowd': 8231, 'dose': 8232, 'satirical': 8233, 'sadness': 8234, 'fart': 8235, 'abby': 8236, 'crumble': 8237, 'xl': 8238, 'greenpeace': 8239, 'erdogan': 8240, 'alba': 8241, 'en': 8242, 'personals': 8243, 'ellie': 8244, 'personalities': 8245, 'preventative': 8246, 'aboard': 8247, 'nash': 8248, 'safari': 8249, 'hardworking': 8250, 'mediate': 8251, 'scrub': 8252, 'fingerprint': 8253, 'onions': 8254, 'gq': 8255, 'mis': 8256, 'geeks': 8257, 'chastise': 8258, 'theology': 8259, 'sweetest': 8260, 'bravely': 8261, 'overthrow': 8262, 'uproar': 8263, 'fragile': 8264, 'manual': 8265, 'replay': 8266, 'undercut': 8267, 'suspiciously': 8268, 'unconstitutional': 8269, 'sore': 8270, 'oswalt': 8271, 'analogy': 8272, 'congolese': 8273, 'feces': 8274, 'inaccurate': 8275, 'ineffective': 8276, 'procrastinate': 8277, 'militias': 8278, 'glam': 8279, 'vibes': 8280, 'nutritional': 8281, 'robble': 8282, 'watchers': 8283, 'rodent': 8284, 'cuckoo': 8285, 'bracelet': 8286, 'export': 8287, 'sunny': 8288, 'embattle': 8289, 'uprise': 8290, 'tandem': 8291, 'dungeon': 8292, 'primarily': 8293, 'communicate': 8294, 'beta': 8295, 'theoretical': 8296, 'racists': 8297, 'davidson': 8298, 'retake': 8299, 'diaries': 8300, 'shelton': 8301, 'atm': 8302, 'reich': 8303, 'discernible': 8304, 'hostility': 8305, 'deray': 8306, 'mckesson': 8307, 'patty': 8308, 'metro': 8309, 'texans': 8310, 'rink': 8311, 'glee': 8312, 'hershey': 8313, 'cocky': 8314, 'guitars': 8315, 'admission': 8316, 'counterparts': 8317, 'groot': 8318, 'darwin': 8319, 'prescribe': 8320, 'froth': 8321, 'recite': 8322, 'gaunt': 8323, 'emissions': 8324, 'defective': 8325, 'wean': 8326, 'peril': 8327, 'soulful': 8328, 'nemesis': 8329, 'withdrawal': 8330, 'drowsy': 8331, 'calculate': 8332, 'trojan': 8333, 'crayon': 8334, 'mutter': 8335, 'criminalize': 8336, 'declassify': 8337, 'adulthood': 8338, 'def': 8339, 'specialize': 8340, 'belated': 8341, 'optimist': 8342, 'fringe': 8343, 'sgt': 8344, 'dumbing': 8345, 'jukebox': 8346, 'reply': 8347, 'commemorative': 8348, 'spam': 8349, 'element': 8350, 'instantly': 8351, 'dissolve': 8352, 'mower': 8353, 'hustler': 8354, 'stroller': 8355, 'fleetwood': 8356, 'lucrative': 8357, 'diploma': 8358, 'choreographer': 8359, 'farenthold': 8360, 'prediction': 8361, 'aetna': 8362, 'peach': 8363, 'trayvon': 8364, 'comparison': 8365, 'sleepover': 8366, 'popularity': 8367, 'zara': 8368, 'outta': 8369, 'stern': 8370, 'julia': 8371, 'burundi': 8372, 'decoy': 8373, 'bipolar': 8374, 'perpetuate': 8375, 'blindness': 8376, 'dipshits': 8377, 'intro': 8378, 'panties': 8379, 'machiavellian': 8380, 'cobra': 8381, 'cum': 8382, 'palmer': 8383, 'deflate': 8384, 'tame': 8385, 'upload': 8386, 'raccoon': 8387, 'remembrance': 8388, 'dyke': 8389, 'cheeky': 8390, 'camper': 8391, 'arthur': 8392, 'mexicans': 8393, 'segregate': 8394, 'criticisms': 8395, 'delegation': 8396, 'pocahontas': 8397, 'fundamentalists': 8398, 'picket': 8399, 'database': 8400, 'zookeeper': 8401, 'allowance': 8402, 'shutter': 8403, 'catastrophe': 8404, 'heighten': 8405, 'celibacy': 8406, 'maximum': 8407, 'hoarder': 8408, 'sailors': 8409, 'ignite': 8410, 'tibetan': 8411, 'bishops': 8412, 'canyon': 8413, 'stockbroker': 8414, 'dwight': 8415, 'outsmart': 8416, 'newborns': 8417, 'bail': 8418, 'tarnish': 8419, 'dumbass': 8420, 'fling': 8421, 'casket': 8422, 'notion': 8423, 'vulnerabilities': 8424, 'fiery': 8425, 'cyclone': 8426, 'patriarchy': 8427, 'reign': 8428, 'erik': 8429, 'handlers': 8430, 'predictable': 8431, 'publication': 8432, 'mohamed': 8433, 'pacs': 8434, 'fil': 8435, 'boast': 8436, 'reactions': 8437, 'overrule': 8438, 'scorch': 8439, 'terrier': 8440, 'dee': 8441, 'pavement': 8442, 'fort': 8443, 'encrypt': 8444, 'revelation': 8445, 'bound': 8446, 'scientology': 8447, 'mannequin': 8448, 'nicely': 8449, 'andreas': 8450, 'brazilian': 8451, 'leopard': 8452, 'appetizers': 8453, 'airborne': 8454, 'sienna': 8455, 'sloppy': 8456, 'suite': 8457, 'emperor': 8458, 'hamm': 8459, 'seekers': 8460, 'deter': 8461, 'newscast': 8462, 'confidant': 8463, 'mesmerize': 8464, 'heck': 8465, 'chipper': 8466, 'teammate': 8467, 'acquit': 8468, 'juan': 8469, 'deadpool': 8470, 'cape': 8471, 'blacklist': 8472, 'pollster': 8473, 'implicate': 8474, 'freshener': 8475, 'entrepreneurs': 8476, 'sweatshops': 8477, 'flourish': 8478, 'grenade': 8479, 'convenient': 8480, 'atom': 8481, 'shingle': 8482, 'buick': 8483, 'unrealistic': 8484, 'oxygen': 8485, 'ugh': 8486, 'apologies': 8487, 'harington': 8488, 'attribute': 8489, 'exclude': 8490, 'plight': 8491, 'pending': 8492, 'promotional': 8493, 'tupac': 8494, 'steroids': 8495, 'rory': 8496, 'fighters': 8497, 'dale': 8498, 'pornhub': 8499, 'glaciers': 8500, 'restoration': 8501, 'certify': 8502, 'blaine': 8503, 'endurance': 8504, 'chechen': 8505, 'unnecessary': 8506, 'barbie': 8507, 'philando': 8508, 'castile': 8509, 'obstacles': 8510, 'semen': 8511, 'underage': 8512, 'poehler': 8513, 'lace': 8514, 'iceland': 8515, 'curators': 8516, 'impulses': 8517, 'coupon': 8518, 'therapists': 8519, 'widely': 8520, 'arabian': 8521, 'menstruate': 8522, 'phish': 8523, 'lionel': 8524, 'vehemently': 8525, 'bereavement': 8526, 'switzerland': 8527, 'bogus': 8528, 'naughty': 8529, 'blur': 8530, 'wilde': 8531, 'destination': 8532, 'consolidate': 8533, 'winnings': 8534, 'bartenders': 8535, 'leo': 8536, 'circuit': 8537, 'salvage': 8538, 'vocal': 8539, 'yankee': 8540, 'seinfeld': 8541, 'mortar': 8542, 'celine': 8543, 'dion': 8544, 'cameo': 8545, 'presumptive': 8546, 'texting': 8547, 'ping': 8548, 'entrust': 8549, 'sacramento': 8550, 'finest': 8551, 'lou': 8552, 'usc': 8553, 'manipulate': 8554, 'cupcake': 8555, 'chime': 8556, 'basement': 8557, 'cultivate': 8558, 'selfish': 8559, 'fab': 8560, 'geography': 8561, 'poland': 8562, 'nerds': 8563, 'indicate': 8564, 'vienna': 8565, 'janice': 8566, 'frontrunner': 8567, 'resent': 8568, 'primer': 8569, 'heinz': 8570, 'lightning': 8571, 'sandler': 8572, 'duggar': 8573, 'conditioner': 8574, 'havana': 8575, 'disclosure': 8576, 'functional': 8577, 'accomplishments': 8578, 'awhile': 8579, 'utterly': 8580, 'booths': 8581, 'cologne': 8582, 'snowflake': 8583, 'perhaps': 8584, 'vaginal': 8585, 'anarchy': 8586, 'trailblazing': 8587, 'seamlessly': 8588, 'meg': 8589, 'institutional': 8590, 'watchman': 8591, 'sandberg': 8592, 'wealthier': 8593, 'whcd': 8594, 'concepts': 8595, 'render': 8596, 'woodward': 8597, 'shroud': 8598, 'sonoma': 8599, 'sip': 8600, 'congo': 8601, 'fiasco': 8602, 'repay': 8603, 'wider': 8604, 'vanilla': 8605, 'buns': 8606, 'tube': 8607, 'orgasm': 8608, 'debris': 8609, 'mh': 8610, 'lengthy': 8611, 'harmless': 8612, 'fiscal': 8613, 'defect': 8614, 'vestments': 8615, 'origins': 8616, 'meek': 8617, 'psychiatrists': 8618, 'thunder': 8619, 'supervisor': 8620, 'soulless': 8621, 'catacombs': 8622, 'plagiarism': 8623, 'generate': 8624, 'restrictive': 8625, 'underrepresented': 8626, 'suri': 8627, 'impatient': 8628, 'sensory': 8629, 'mosquitoes': 8630, 'migrate': 8631, 'encyclopedia': 8632, 'smoothly': 8633, 'pedestrian': 8634, 'nascar': 8635, 'pension': 8636, 'skittle': 8637, 'leelah': 8638, 'alcorn': 8639, 'slat': 8640, 'helen': 8641, 'marilyn': 8642, 'lt': 8643, 'baboon': 8644, 'misspell': 8645, 'trumpet': 8646, 'deteriorate': 8647, 'addition': 8648, 'hardline': 8649, 'tee': 8650, 'fist': 8651, 'formation': 8652, 'hassle': 8653, 'pencil': 8654, 'malala': 8655, 'fuckers': 8656, 'judd': 8657, 'supplement': 8658, 'lagerfeld': 8659, 'songwriter': 8660, 'offender': 8661, 'boutique': 8662, 'skim': 8663, 'chattanooga': 8664, 'pies': 8665, 'rickman': 8666, 'motown': 8667, 'substantial': 8668, 'lander': 8669, 'ancestor': 8670, 'conform': 8671, 'inn': 8672, 'intent': 8673, 'damore': 8674, 'wilder': 8675, 'judaism': 8676, 'ritalin': 8677, 'squeak': 8678, 'egos': 8679, 'physics': 8680, 'incorrectly': 8681, 'squash': 8682, 'surrogate': 8683, 'shootout': 8684, 'undetected': 8685, 'moderators': 8686, 'dominance': 8687, 'lyft': 8688, 'duckworth': 8689, 'chrysler': 8690, 'longevity': 8691, 'mathematician': 8692, 'cheerleader': 8693, 'hoover': 8694, 'visibility': 8695, 'chopra': 8696, 'laureate': 8697, 'dzhokhar': 8698, 'software': 8699, 'reabsorb': 8700, 'atmosphere': 8701, 'raucous': 8702, 'battleship': 8703, 'collusion': 8704, 'sparrow': 8705, 'voluntarily': 8706, 'diplomacy': 8707, 'lust': 8708, 'cattrall': 8709, 'pueblo': 8710, 'levi': 8711, 'fuzzy': 8712, 'disc': 8713, 'derive': 8714, 'botanists': 8715, 'loophole': 8716, 'bulb': 8717, 'axe': 8718, 'skier': 8719, 'ordeal': 8720, 'mobility': 8721, 'typo': 8722, 'polio': 8723, 'referee': 8724, 'mozambique': 8725, 'gisele': 8726, 'appreciate': 8727, 'jeffrey': 8728, 'omg': 8729, 'niece': 8730, 'eccentric': 8731, 'pretzel': 8732, 'wilds': 8733, 'resurrection': 8734, 'nepotism': 8735, 'mohammed': 8736, 'cautious': 8737, 'cabaret': 8738, 'void': 8739, 'institutions': 8740, 'jetblue': 8741, 'fond': 8742, 'zamboni': 8743, 'ruffalo': 8744, 'apu': 8745, 'unlicensed': 8746, 'doc': 8747, 'ostrich': 8748, 'retrospective': 8749, 'hader': 8750, 'hopefully': 8751, 'puppies': 8752, 'liner': 8753, 'abort': 8754, 'heartless': 8755, 'paterno': 8756, 'uncool': 8757, 'diplomat': 8758, 'rim': 8759, 'pip': 8760, 'amelia': 8761, 'oppress': 8762, 'weaker': 8763, 'basket': 8764, 'prioritize': 8765, 'verse': 8766, 'relatable': 8767, 'faint': 8768, 'electricity': 8769, 'verbal': 8770, 'disintegrate': 8771, 'baywatch': 8772, 'dire': 8773, 'rican': 8774, 'brainstorm': 8775, 'monoxide': 8776, 'forge': 8777, 'uh': 8778, 'oitnb': 8779, 'sinatra': 8780, 'uganda': 8781, 'mobil': 8782, 'sequence': 8783, 'dresser': 8784, 'sassy': 8785, 'obey': 8786, 'acoustic': 8787, 'tammy': 8788, 'stealth': 8789, 'backstage': 8790, 'flock': 8791, 'offerman': 8792, 'feather': 8793, 'sinister': 8794, 'filipino': 8795, 'brawny': 8796, 'settlements': 8797, 'wipers': 8798, 'resilient': 8799, 'manly': 8800, 'menopause': 8801, 'acquaintances': 8802, 'coddle': 8803, 'attacker': 8804, 'luxurious': 8805, 'cosmic': 8806, 'sadden': 8807, 'preemptively': 8808, 'warhol': 8809, 'bait': 8810, 'iowan': 8811, 'despise': 8812, 'similar': 8813, 'translator': 8814, 'lasagna': 8815, 'gentle': 8816, 'biographer': 8817, 'tend': 8818, 'stadiums': 8819, 'grindr': 8820, 'kitchenaid': 8821, 'oppendahl': 8822, 'grizzly': 8823, 'armstrong': 8824, 'sinclair': 8825, 'laborers': 8826, 'baptize': 8827, 'clich': 8828, 'skype': 8829, 'raqqa': 8830, 'omar': 8831, 'reaffirm': 8832, 'toothbrushes': 8833, 'footprints': 8834, 'funky': 8835, 'intimacy': 8836, 'elegant': 8837, 'hyland': 8838, 'catalan': 8839, 'sandusky': 8840, 'relic': 8841, 'dynasty': 8842, 'institution': 8843, 'mt': 8844, 'sympathetic': 8845, 'abusers': 8846, 'blond': 8847, 'obstruction': 8848, 'ultrasound': 8849, 'bender': 8850, 'crowe': 8851, 'mimic': 8852, 'windshield': 8853, 'bengal': 8854, 'tigers': 8855, 'illicit': 8856, 'wick': 8857, 'spite': 8858, 'immortal': 8859, 'goddess': 8860, 'prick': 8861, 'prone': 8862, 'musicals': 8863, 'penitentiary': 8864, 'lambert': 8865, 'rushmore': 8866, 'noose': 8867, 'monks': 8868, 'jen': 8869, 'confession': 8870, 'sliders': 8871, 'starship': 8872, 'spaz': 8873, 'outnumber': 8874, 'dramas': 8875, 'vandalism': 8876, 'bodybuilder': 8877, 'boob': 8878, 'accompany': 8879, 'snowstorm': 8880, 'dementia': 8881, 'segment': 8882, 'clarence': 8883, 'timothy': 8884, 'eulogy': 8885, 'uae': 8886, 'vain': 8887, 'tlc': 8888, 'canoe': 8889, 'commentary': 8890, 'secretive': 8891, 'poach': 8892, 'enemy': 8893, 'disqualify': 8894, 'misguide': 8895, 'rite': 8896, 'veggies': 8897, 'inclement': 8898, 'regard': 8899, 'treatments': 8900, 'schoolgirls': 8901, 'purely': 8902, 'gurney': 8903, 'strangely': 8904, 'florist': 8905, 'smartphones': 8906, 'smokin': 8907, 'rita': 8908, 'sinner': 8909, 'unusually': 8910, 'beaver': 8911, 'westboro': 8912, 'funerals': 8913, 'portuguese': 8914, 'fender': 8915, 'prelude': 8916, 'sparkle': 8917, 'extinguish': 8918, 'hum': 8919, 'kinney': 8920, 'spectacle': 8921, 'benjamin': 8922, 'deliberately': 8923, 'apples': 8924, 'scatter': 8925, 'untrue': 8926, 'intermission': 8927, 'covert': 8928, 'weightlifter': 8929, 'synthetic': 8930, 'bosley': 8931, 'labyrinth': 8932, 'rake': 8933, 'rollout': 8934, 'foley': 8935, 'movers': 8936, 'keen': 8937, 'twinge': 8938, 'sprawl': 8939, 'asghar': 8940, 'farhadi': 8941, 'simone': 8942, 'biles': 8943, 'danson': 8944, 'audra': 8945, 'appropriations': 8946, 'hourly': 8947, 'whitewater': 8948, 'skincare': 8949, 'schoolhouse': 8950, 'watts': 8951, 'shrek': 8952, 'godmother': 8953, 'underserved': 8954, 'freeman': 8955, 'fashionable': 8956, 'christen': 8957, 'sepp': 8958, 'blatter': 8959, 'nar': 8960, 'trespass': 8961, 'elmo': 8962, 'saturn': 8963, 'kurt': 8964, 'lo': 8965, 'monocle': 8966, 'clench': 8967, 'creed': 8968, 'largemouth': 8969, 'grandchild': 8970, 'northwest': 8971, 'irritate': 8972, 'legos': 8973, 'granite': 8974, 'ferry': 8975, 'shonda': 8976, 'rhimes': 8977, 'plantation': 8978, 'livingston': 8979, 'rugged': 8980, 'amok': 8981, 'reek': 8982, 'stephon': 8983, 'blockbusters': 8984, 'liz': 8985, 'banjo': 8986, 'clearer': 8987, 'modest': 8988, 'singers': 8989, 'sanity': 8990, 'hypochondriac': 8991, 'welder': 8992, 'dojo': 8993, 'showtime': 8994, 'apollo': 8995, 'vivid': 8996, 'discreet': 8997, 'overreach': 8998, 'gunmen': 8999, 'clay': 9000, 'insect': 9001, 'limitless': 9002, 'manners': 9003, 'swordfish': 9004, 'cinema': 9005, 'aviator': 9006, 'generally': 9007, 'eager': 9008, 'understudy': 9009, 'impervious': 9010, 'mister': 9011, 'puncture': 9012, 'carnivores': 9013, 'louvre': 9014, 'buffer': 9015, 'sacha': 9016, 'medicinal': 9017, 'lasik': 9018, 'incinerate': 9019, 'craziness': 9020, 'custom': 9021, 'chanel': 9022, 'ganymede': 9023, 'toomey': 9024, 'lukewarm': 9025, 'cactus': 9026, 'bombers': 9027, 'romero': 9028, 'spectacularly': 9029, 'rolos': 9030, 'cryptocurrency': 9031, 'hospice': 9032, 'wither': 9033, 'agony': 9034, 'untested': 9035, 'shortcomings': 9036, 'unapproved': 9037, 'timmy': 9038, 'louisville': 9039, 'hearty': 9040, 'volts': 9041, 'abolish': 9042, 'creationist': 9043, 'payback': 9044, 'blackberry': 9045, 'skywriter': 9046, 'snitch': 9047, 'substance': 9048, 'slut': 9049, 'materials': 9050, 'zeus': 9051, 'rejoin': 9052, 'bigfoot': 9053, 'publicists': 9054, 'tanzania': 9055, 'monuments': 9056, 'isil': 9057, 'euphemize': 9058, 'hellish': 9059, 'atonal': 9060, 'cache': 9061, 'fossils': 9062, 'reaper': 9063, 'malibu': 9064, 'orthodox': 9065, 'crossfit': 9066, 'gynecologist': 9067, 'homepage': 9068, 'magritte': 9069, 'flannel': 9070, 'baggage': 9071, 'mutilate': 9072, 'notorious': 9073, 'unbearable': 9074, 'overrun': 9075, 'midwest': 9076, 'twas': 9077, 'squirm': 9078, 'dysmorphia': 9079, 'sufferers': 9080, 'perception': 9081, 'indefensible': 9082, 'shortcuts': 9083, 'sant': 9084, 'undiscovered': 9085, 'pediatricians': 9086, 'nighttime': 9087, 'nicaraguan': 9088, 'centauri': 9089, 'arboretum': 9090, 'listeria': 9091, 'coordination': 9092, 'kite': 9093, 'slovenian': 9094, 'outperform': 9095, 'displease': 9096, 'wimbledon': 9097, 'endgame': 9098, 'mammal': 9099, 'powder': 9100, 'kebab': 9101, 'spanx': 9102, 'bulge': 9103, 'blurb': 9104, 'antarctic': 9105, 'observational': 9106, 'vitale': 9107, 'ugandan': 9108, 'overprice': 9109, 'starch': 9110, 'disapproval': 9111, 'expressions': 9112, 'tvs': 9113, 'deepest': 9114, 'tormund': 9115, 'lightweight': 9116, 'triangle': 9117, 'seychelles': 9118, 'racially': 9119, 'astoria': 9120, 'upstanding': 9121, 'nonetheless': 9122, 'abduction': 9123, 'lego': 9124, 'backpacker': 9125, 'instagrams': 9126, 'pepperoni': 9127, 'curfew': 9128, 'preps': 9129, 'biscuit': 9130, 'rowland': 9131, 'qualities': 9132, 'messiah': 9133, 'blowback': 9134, 'caesars': 9135, 'gravy': 9136, 'alyssa': 9137, 'reedus': 9138, 'belgrade': 9139, 'serbia': 9140, 'rfk': 9141, 'airfare': 9142, 'inexperienced': 9143, 'shameful': 9144, 'villagers': 9145, 'stickers': 9146, 'liam': 9147, 'smooch': 9148, 'burlesque': 9149, 'stretcher': 9150, 'ghoulish': 9151, 'bony': 9152, 'thinly': 9153, 'convene': 9154, 'nag': 9155, 'decipher': 9156, 'cooperate': 9157, 'interim': 9158, 'stink': 9159, 'wallpaper': 9160, 'gummy': 9161, 'jinping': 9162, 'kissinger': 9163, 'finer': 9164, 'clandestine': 9165, 'fudge': 9166, 'dislike': 9167, 'custodian': 9168, 'touchscreen': 9169, 'universally': 9170, 'dentist': 9171, 'muscular': 9172, 'complications': 9173, 'transcript': 9174, 'tabloid': 9175, 'cakewalk': 9176, 'clarinet': 9177, 'freestyle': 9178, 'bohemian': 9179, 'rhapsody': 9180, 'pillsbury': 9181, 'attorneys': 9182, 'repercussions': 9183, 'gassy': 9184, 'keebler': 9185, 'elves': 9186, 'deployment': 9187, 'broadband': 9188, 'cartel': 9189, 'surreal': 9190, 'trippy': 9191, 'belafonte': 9192, 'superpower': 9193, 'actualize': 9194, 'worlds': 9195, 'bassist': 9196, 'tara': 9197, 'kroger': 9198, 'balvin': 9199, 'wiz': 9200, 'platinum': 9201, 'kareem': 9202, 'conspire': 9203, 'dispense': 9204, 'rehearsal': 9205, 'philanthropist': 9206, 'dilma': 9207, 'rousseff': 9208, 'murderers': 9209, 'practitioner': 9210, 'adore': 9211, 'sox': 9212, 'milan': 9213, 'strictest': 9214, 'nebraska': 9215, 'dishonorable': 9216, 'shredder': 9217, 'eckhart': 9218, 'unkempt': 9219, 'panty': 9220, 'glaad': 9221, 'horner': 9222, 'brody': 9223, 'kohl': 9224, 'wnba': 9225, 'doughnut': 9226, 'pulp': 9227, 'graveyard': 9228, 'candidacy': 9229, 'scissor': 9230, 'sheen': 9231, 'safeguard': 9232, 'cognitive': 9233, 'magna': 9234, 'carta': 9235, 'unify': 9236, 'incentives': 9237, 'wong': 9238, 'parachute': 9239, 'autumn': 9240, 'procter': 9241, 'menstruation': 9242, 'supposedly': 9243, 'cherokee': 9244, 'bluetooth': 9245, 'envoy': 9246, 'missionary': 9247, 'contradictions': 9248, 'covenant': 9249, 'liberia': 9250, 'interruption': 9251, 'strongman': 9252, 'dateline': 9253, 'alexandra': 9254, 'technically': 9255, 'insecurity': 9256, 'kelley': 9257, 'chemo': 9258, 'sexualize': 9259, 'octogenarian': 9260, 'instructional': 9261, 'reap': 9262, 'masturbation': 9263, 'gilligan': 9264, 'hague': 9265, 'quake': 9266, 'arete': 9267, 'scorpions': 9268, 'illuminate': 9269, 'payne': 9270, 'observation': 9271, 'digitize': 9272, 'skateboarder': 9273, 'foreigners': 9274, 'iss': 9275, 'louie': 9276, 'gohmert': 9277, 'reflex': 9278, 'jug': 9279, 'uncouple': 9280, 'revitalize': 9281, 'liability': 9282, 'marker': 9283, 'deaver': 9284, 'moby': 9285, 'portman': 9286, 'shatner': 9287, 'nimoy': 9288, 'restless': 9289, 'lousy': 9290, 'celestial': 9291, 'utopia': 9292, 'albanian': 9293, 'sanford': 9294, 'fiancee': 9295, 'lawnmower': 9296, 'peeve': 9297, 'pivot': 9298, 'einstein': 9299, 'vaguely': 9300, 'pantyhose': 9301, 'kmart': 9302, 'discharge': 9303, 'airasia': 9304, 'ancestors': 9305, 'blooper': 9306, 'chin': 9307, 'wackiest': 9308, 'audit': 9309, 'ck': 9310, 'preet': 9311, 'bharara': 9312, 'sedentary': 9313, 'placenta': 9314, 'kashmir': 9315, 'crocs': 9316, 'inseparable': 9317, 'proceed': 9318, 'reverently': 9319, 'unanswered': 9320, 'wellness': 9321, 'dawkins': 9322, 'crock': 9323, 'casa': 9324, 'pizzas': 9325, 'outlandish': 9326, 'spa': 9327, 'halperin': 9328, 'profoundly': 9329, 'detox': 9330, 'gatorade': 9331, 'nihilistic': 9332, 'uruguay': 9333, 'polarize': 9334, 'patagonia': 9335, 'fleece': 9336, 'buzzer': 9337, 'sur': 9338, 'directv': 9339, 'memoirs': 9340, 'fahrenheit': 9341, 'unmoved': 9342, 'abraham': 9343, 'orville': 9344, 'generosity': 9345, 'streetcar': 9346, 'quash': 9347, 'kalief': 9348, 'browder': 9349, 'possessions': 9350, 'hologram': 9351, 'breeze': 9352, 'visine': 9353, 'buffoon': 9354, 'comprehend': 9355, 'je': 9356, 'recreation': 9357, 'armageddon': 9358, 'archaeological': 9359, 'quinoa': 9360, 'kingpin': 9361, 'grandmas': 9362, 'squat': 9363, 'wanda': 9364, 'diss': 9365, 'bbq': 9366, 'loyalists': 9367, 'jorge': 9368, 'ramos': 9369, 'sophisticate': 9370, 'denis': 9371, 'freelancers': 9372, 'boyfriends': 9373, 'flyover': 9374, 'montreal': 9375, 'width': 9376, 'biodiversity': 9377, 'famed': 9378, 'birmingham': 9379, 'raft': 9380, 'instrument': 9381, 'ahca': 9382, 'overestimate': 9383, 'grumble': 9384, 'rehabilitate': 9385, 'banker': 9386, 'hayley': 9387, 'floppy': 9388, 'disk': 9389, 'autocratic': 9390, 'sonny': 9391, 'rebuttal': 9392, 'fetishist': 9393, 'kayak': 9394, 'redrawing': 9395, 'childfree': 9396, 'cummings': 9397, 'molly': 9398, 'hatchet': 9399, 'rollerblade': 9400, 'samberg': 9401, 'retention': 9402, 'sebastian': 9403, 'radically': 9404, 'medieval': 9405, 'camel': 9406, 'toback': 9407, 'maggot': 9408, 'flagrantly': 9409, 'wren': 9410, 'relapse': 9411, 'vastly': 9412, 'cracker': 9413, 'latte': 9414, 'hesitate': 9415, 'provoke': 9416, 'pouch': 9417, 'electrical': 9418, 'frolic': 9419, 'uss': 9420, 'nugget': 9421, 'oblivious': 9422, 'crunchy': 9423, 'rubber': 9424, 'maniac': 9425, 'dislodge': 9426, 'constituency': 9427, 'sino': 9428, 'landfill': 9429, 'viable': 9430, 'sentient': 9431, 'shamanism': 9432, 'cinnabon': 9433, 'pastries': 9434, 'troy': 9435, 'mutants': 9436, 'shaun': 9437, 'dispatch': 9438, 'valderrama': 9439, 'mcnugget': 9440, 'hinge': 9441, 'tier': 9442, 'vinci': 9443, 'litter': 9444, 'passive': 9445, 'totter': 9446, 'beam': 9447, 'indonesian': 9448, 'restroom': 9449, 'hymn': 9450, 'various': 9451, 'wartime': 9452, 'rockwell': 9453, 'dalai': 9454, 'lama': 9455, 'markers': 9456, 'raccoons': 9457, 'frontal': 9458, 'ozone': 9459, 'retweeting': 9460, 'sunnis': 9461, 'fallujah': 9462, 'rudder': 9463, 'infinite': 9464, 'velociraptor': 9465, 'jurassic': 9466, 'battleground': 9467, 'bison': 9468, 'chattman': 9469, 'suvs': 9470, 'bermuda': 9471, 'pikachu': 9472, 'lollapalooza': 9473, 'slug': 9474, 'enterprise': 9475, 'landslide': 9476, 'ravine': 9477, 'phillie': 9478, 'phanatic': 9479, 'comprehension': 9480, 'flavorless': 9481, 'regale': 9482, 'psycho': 9483, 'amphitheater': 9484, 'busybody': 9485, 'boris': 9486, 'yeltsin': 9487, 'pg': 9488, 'seoul': 9489, 'altitude': 9490, 'firmly': 9491, 'lois': 9492, 'lypsinka': 9493, 'mozart': 9494, 'nickelback': 9495, 'frugal': 9496, 'biotech': 9497, 'unidentified': 9498, 'infect': 9499, 'pistachio': 9500, 'sincerely': 9501, 'jo': 9502, 'russiagate': 9503, 'predatory': 9504, 'carroll': 9505, 'orient': 9506, 'ethiopia': 9507, 'knowingly': 9508, 'barb': 9509, 'flawless': 9510, 'seeker': 9511, 'vinyl': 9512, 'natives': 9513, 'scooby': 9514, 'explicit': 9515, 'brent': 9516, 'cubans': 9517, 'styx': 9518, 'talkative': 9519, 'newsbrief': 9520, 'haiku': 9521, 'cheapest': 9522, 'scapegoats': 9523, 'moan': 9524, 'mumford': 9525, 'racetrack': 9526, 'successes': 9527, 'dismal': 9528, 'commuter': 9529, 'hairstyles': 9530, 'chevron': 9531, 'interrogator': 9532, 'breakout': 9533, 'neuter': 9534, 'paraphernalia': 9535, 'dsm': 9536, 'lockdown': 9537, 'osprey': 9538, 'expectation': 9539, 'flamethrower': 9540, 'wrath': 9541, 'gritty': 9542, 'cottonelle': 9543, 'catastrophic': 9544, 'assassins': 9545, 'amos': 9546, 'depose': 9547, 'stonewall': 9548, 'chicks': 9549, 'borrowers': 9550, 'cassini': 9551, 'emanate': 9552, 'reconnect': 9553, 'cremate': 9554, 'layover': 9555, 'radius': 9556, 'wheelbarrow': 9557, 'twitterverse': 9558, 'arya': 9559, 'demote': 9560, 'midwestern': 9561, 'foes': 9562, 'backers': 9563, 'tabletop': 9564, 'jussie': 9565, 'arsenio': 9566, 'unbroken': 9567, 'semi': 9568, 'unapologetic': 9569, 'trio': 9570, 'grimace': 9571, 'detect': 9572, 'chrome': 9573, 'chokehold': 9574, 'supple': 9575, 'sager': 9576, 'irwin': 9577, 'jonah': 9578, 'fu': 9579, 'birdman': 9580, 'astonish': 9581, 'workplaces': 9582, 'fico': 9583, 'unlike': 9584, 'pranksters': 9585, 'howl': 9586, 'duet': 9587, 'seafood': 9588, 'tupperware': 9589, 'departments': 9590, 'aspca': 9591, 'virulent': 9592, 'evan': 9593, 'akin': 9594, 'forrest': 9595, 'policymaking': 9596, 'sternly': 9597, 'monarchy': 9598, 'limp': 9599, 'stroll': 9600, 'southerner': 9601, 'cruella': 9602, 'inflict': 9603, 'chong': 9604, 'barbados': 9605, 'fyi': 9606, 'hardcore': 9607, 'ramsay': 9608, 'ne': 9609, 'slimmer': 9610, 'riz': 9611, 'mindy': 9612, 'kaling': 9613, 'piggies': 9614, 'jazzfest': 9615, 'forage': 9616, 'audiobook': 9617, 'overdrive': 9618, 'distrust': 9619, 'suggestions': 9620, 'beck': 9621, 'notions': 9622, 'dossier': 9623, 'solemn': 9624, 'schiff': 9625, 'misinformation': 9626, 'tread': 9627, 'mideast': 9628, 'goldblum': 9629, 'tussle': 9630, 'expedition': 9631, 'warcraft': 9632, 'predispose': 9633, 'bodily': 9634, 'fluid': 9635, 'wrest': 9636, 'orchestra': 9637, 'mellencamp': 9638, 'cain': 9639, 'chorus': 9640, 'monk': 9641, 'mets': 9642, 'brendan': 9643, 'fraser': 9644, 'klepper': 9645, 'infest': 9646, 'crises': 9647, 'mummify': 9648, 'courthouse': 9649, 'liberties': 9650, 'reiser': 9651, 'adjunct': 9652, 'nicolas': 9653, 'sarkozy': 9654, 'des': 9655, 'aykroyd': 9656, 'cc': 9657, 'quantity': 9658, 'beget': 9659, 'yom': 9660, 'kippur': 9661, 'thirsty': 9662, 'crispy': 9663, 'ragnar': 9664, 'attain': 9665, 'sudanese': 9666, 'ucla': 9667, 'recur': 9668, 'timoth': 9669, 'chalamet': 9670, 'cohn': 9671, 'emmanuel': 9672, 'guerilla': 9673, 'notify': 9674, 'chefs': 9675, 'seahawks': 9676, 'hersh': 9677, 'reformers': 9678, 'reddi': 9679, 'wip': 9680, 'canister': 9681, 'bei': 9682, 'lyndon': 9683, 'contra': 9684, 'miniature': 9685, 'sicker': 9686, 'owls': 9687, 'inaccuracy': 9688, 'superfood': 9689, 'nonchalant': 9690, 'dysfunction': 9691, 'amass': 9692, 'methadone': 9693, 'wherever': 9694, 'viacom': 9695, 'unfamiliar': 9696, 'euthanizing': 9697, 'reclusive': 9698, 'bankroll': 9699, 'moderation': 9700, 'impressions': 9701, 'vietnamese': 9702, 'bronx': 9703, 'dismissal': 9704, 'yards': 9705, 'racket': 9706, 'palatable': 9707, 'commentator': 9708, 'revolve': 9709, 'ageism': 9710, 'accountability': 9711, 'retract': 9712, 'priorities': 9713, 'unrecognizable': 9714, 'howie': 9715, 'cavs': 9716, 'raiders': 9717, 'relaunches': 9718, 'munson': 9719, 'empowerment': 9720, 'revlon': 9721, 'firemen': 9722, 'lemur': 9723, 'dumbshit': 9724, 'skylight': 9725, 'fragrance': 9726, 'chateau': 9727, 'eisenberg': 9728, 'catcall': 9729, 'wasteland': 9730, 'defrost': 9731, 'carmelo': 9732, 'jumpin': 9733, 'autoplaying': 9734, 'paradox': 9735, 'tammys': 9736, 'turkeys': 9737, 'nigerian': 9738, 'martini': 9739, 'motherf': 9740, 'ker': 9741, 'kirstjen': 9742, 'shannon': 9743, 'woodcut': 9744, 'mcmahon': 9745, 'indictment': 9746, 'revelers': 9747, 'heartbeat': 9748, 'surgical': 9749, 'swap': 9750, 'extraction': 9751, 'otters': 9752, 'danza': 9753, 'liquid': 9754, 'instincts': 9755, 'tricky': 9756, 'incorrect': 9757, 'uncanny': 9758, 'unknowingly': 9759, 'instructors': 9760, 'fuse': 9761, 'interact': 9762, 'behar': 9763, 'mayoral': 9764, 'enzyme': 9765, 'se': 9766, 'ers': 9767, 'vineyard': 9768, 'disrepair': 9769, 'turbans': 9770, 'articulate': 9771, 'pubescent': 9772, 'turnaround': 9773, 'beyhive': 9774, 'rachael': 9775, 'availability': 9776, 'meningitis': 9777, 'brownback': 9778, 'frosty': 9779, 'perk': 9780, 'turbulent': 9781, 'developers': 9782, 'digitally': 9783, 'sticky': 9784, 'ricola': 9785, 'embargo': 9786, 'childish': 9787, 'gambino': 9788, 'preface': 9789, 'fumigate': 9790, 'hitman': 9791, 'usable': 9792, 'haitian': 9793, 'jumbotron': 9794, 'quilt': 9795, 'rash': 9796, 'incitement': 9797, 'dre': 9798, 'uva': 9799, 'cholera': 9800, 'tmz': 9801, 'dayton': 9802, 'highs': 9803, 'frisbee': 9804, 'theblaze': 9805, 'plumb': 9806, 'enjoyment': 9807, 'motawi': 9808, 'tactical': 9809, 'suggestion': 9810, 'sadiq': 9811, 'woe': 9812, 'affirmations': 9813, 'marchers': 9814, 'bulldog': 9815, 'allison': 9816, 'contemporary': 9817, 'autobiography': 9818, 'redo': 9819, 'steaks': 9820, 'cooker': 9821, 'antique': 9822, 'wicker': 9823, 'floss': 9824, 'gutting': 9825, 'handheld': 9826, 'thermometer': 9827, 'marginalize': 9828, 'algebra': 9829, 'publishers': 9830, 'premature': 9831, 'horizon': 9832, 'ronaldo': 9833, 'saliva': 9834, 'nipples': 9835, 'homosexuals': 9836, 'quirky': 9837, 'agribusiness': 9838, 'ledger': 9839, 'psychics': 9840, 'hopelessly': 9841, 'krieger': 9842, 'iftar': 9843, 'shareholders': 9844, 'busch': 9845, 'preemie': 9846, 'affable': 9847, 'laminate': 9848, 'lasso': 9849, 'outsource': 9850, 'negro': 9851, 'mule': 9852, 'albums': 9853, 'fright': 9854, 'jellyfish': 9855, 'edgar': 9856, 'euthanized': 9857, 'gamestop': 9858, 'clot': 9859, 'cinemas': 9860, 'trainers': 9861, 'phrasebook': 9862, 'knot': 9863, 'globally': 9864, 'blagojevich': 9865, 'suitor': 9866, 'porta': 9867, 'portrayal': 9868, 'alliances': 9869, 'dishonest': 9870, 'flounder': 9871, 'embalm': 9872, 'archivists': 9873, 'hitch': 9874, 'kozlewski': 9875, 'ralph': 9876, 'wizards': 9877, 'chao': 9878, 'stricken': 9879, 'asexual': 9880, 'urinator': 9881, 'annihilate': 9882, 'radicals': 9883, 'intention': 9884, 'harasser': 9885, 'solomon': 9886, 'peddle': 9887, 'flyers': 9888, 'loesch': 9889, 'disillusionment': 9890, 'elbow': 9891, 'sleeve': 9892, 'picker': 9893, 'operations': 9894, 'lumbar': 9895, 'larson': 9896, 'darrell': 9897, 'slovenia': 9898, 'competitor': 9899, 'tougher': 9900, 'riverdale': 9901, 'lili': 9902, 'cranberry': 9903, 'escapee': 9904, 'comrie': 9905, 'carnivorous': 9906, 'kosovo': 9907, 'losses': 9908, 'deodorant': 9909, 'jade': 9910, 'comfier': 9911, 'volume': 9912, 'chang': 9913, 'squeal': 9914, 'sensible': 9915, 'rodrigo': 9916, 'floodwaters': 9917, 'extent': 9918, 'rehires': 9919, 'kindergartener': 9920, 'biel': 9921, 'heyday': 9922, 'cara': 9923, 'viciously': 9924, 'blackouts': 9925, 'prima': 9926, 'mayors': 9927, 'prohibit': 9928, 'servers': 9929, 'thom': 9930, 'yorke': 9931, 'cathedral': 9932, 'dawson': 9933, 'pathway': 9934, 'standardize': 9935, 'curriculum': 9936, 'antic': 9937, 'electronics': 9938, 'protector': 9939, 'megachurch': 9940, 'orcas': 9941, 'verbatim': 9942, 'greenwood': 9943, 'filmstrip': 9944, 'flatly': 9945, 'shall': 9946, 'paddleboard': 9947, 'nugent': 9948, 'petco': 9949, 'gerbils': 9950, 'goodness': 9951, 'viking': 9952, 'nonprofits': 9953, 'huma': 9954, 'subsequent': 9955, 'poppy': 9956, 'swimmers': 9957, 'suggestive': 9958, 'misunderstand': 9959, 'alienate': 9960, 'afterlife': 9961, 'bulk': 9962, 'dinners': 9963, 'prematurely': 9964, 'vat': 9965, 'raven': 9966, 'grudge': 9967, 'athens': 9968, 'prestigious': 9969, 'grinch': 9970, 'bliss': 9971, 'cte': 9972, 'prior': 9973, 'boise': 9974, 'underestimate': 9975, 'imf': 9976, 'electorate': 9977, 'wyclef': 9978, 'fugees': 9979, 'blac': 9980, 'perfection': 9981, 'desirable': 9982, 'masturbators': 9983, 'youthful': 9984, 'companion': 9985, 'hardest': 9986, 'powerfully': 9987, 'archie': 9988, 'ornament': 9989, 'relegate': 9990, 'vandals': 9991, 'cupid': 9992, 'affiliate': 9993, 'unfortunate': 9994, 'hadid': 9995, 'nickel': 9996, 'lunchbox': 9997, 'harambe': 9998, 'helmets': 9999, 'ave': 10000, 'catapult': 10001, 'guidelines': 10002, 'yazidi': 10003, 'waaah': 10004, 'drool': 10005, 'outlander': 10006, 'tartan': 10007, 'bumper': 10008, 'jihadist': 10009, 'contamination': 10010, 'maoist': 10011, 'dogfight': 10012, 'procedures': 10013, 'maneuver': 10014, 'torso': 10015, 'speedy': 10016, 'pristine': 10017, 'gmo': 10018, 'beckon': 10019, 'judy': 10020, 'lap': 10021, 'silk': 10022, 'bicker': 10023, 'tehran': 10024, 'demonstrations': 10025, 'hughes': 10026, 'excel': 10027, 'suarez': 10028, 'surrogates': 10029, 'nyfw': 10030, 'afghans': 10031, 'kirkman': 10032, 'rout': 10033, 'handsome': 10034, 'mannequins': 10035, 'alias': 10036, 'sylvester': 10037, 'stallone': 10038, 'villa': 10039, 'picky': 10040, 'eater': 10041, 'slum': 10042, 'greeter': 10043, 'til': 10044, 'fireplace': 10045, 'aloud': 10046, 'disgrace': 10047, 'stomp': 10048, 'cometh': 10049, 'nunberg': 10050, 'dern': 10051, 'ftc': 10052, 'presume': 10053, 'manageable': 10054, 'bloodline': 10055, 'costars': 10056, 'barge': 10057, 'honorable': 10058, 'resemble': 10059, 'dietary': 10060, 'sticker': 10061, 'pretentious': 10062, 'predominantly': 10063, 'desensitize': 10064, 'cramp': 10065, 'jackass': 10066, 'rooney': 10067, 'memorabilia': 10068, 'prinze': 10069, 'monumental': 10070, 'merriam': 10071, 'dictionary': 10072, 'dell': 10073, 'dishonor': 10074, 'fatten': 10075, 'stronghold': 10076, 'redeem': 10077, 'lucid': 10078, 'concussion': 10079, 'mohawked': 10080, 'floyd': 10081, 'pacquiao': 10082, 'westbrook': 10083, 'defender': 10084, 'coax': 10085, 'retrieve': 10086, 'workforce': 10087, 'pregame': 10088, 'foolishly': 10089, 'maim': 10090, 'bullsh': 10091, 'bandolier': 10092, 'diane': 10093, 'oops': 10094, 'merit': 10095, 'alternatives': 10096, 'philanderer': 10097, 'payer': 10098, 'yak': 10099, 'contention': 10100, 'herpetologist': 10101, 'crater': 10102, 'reluctant': 10103, 'fugitive': 10104, 'heroine': 10105, 'costa': 10106, 'kemp': 10107, 'antebellum': 10108, 'genre': 10109, 'comptroller': 10110, 'bruise': 10111, 'kickboxing': 10112, 'stallion': 10113, 'hardcover': 10114, 'nutter': 10115, 'supportive': 10116, 'overpopulation': 10117, 'conservationists': 10118, 'legionnaires': 10119, 'fogle': 10120, 'wes': 10121, 'wicked': 10122, 'gypsies': 10123, 'fleek': 10124, 'designation': 10125, 'wilmore': 10126, 'egyptians': 10127, 'lew': 10128, 'butterworth': 10129, 'neal': 10130, 'depend': 10131, 'eerily': 10132, 'atrocities': 10133, 'burritos': 10134, 'corset': 10135, 'chita': 10136, 'apocalyptic': 10137, 'redheads': 10138, 'goliath': 10139, 'keegan': 10140, 'tasty': 10141, 'scoop': 10142, 'dragons': 10143, 'methodically': 10144, 'captor': 10145, 'dragon': 10146, 'denial': 10147, 'underworld': 10148, 'immortality': 10149, 'jovi': 10150, 'systemic': 10151, 'nam': 10152, 'realities': 10153, 'mumble': 10154, 'tentatively': 10155, 'cairo': 10156, 'petals': 10157, 'mineral': 10158, 'grumpy': 10159, 'gazebo': 10160, 'marathoner': 10161, 'genome': 10162, 'collie': 10163, 'bffs': 10164, 'storytelling': 10165, 'unprepared': 10166, 'downside': 10167, 'gallows': 10168, 'infographic': 10169, 'identical': 10170, 'convoy': 10171, 'authentic': 10172, 'durbin': 10173, 'achilles': 10174, 'viruses': 10175, 'chimpanzee': 10176, 'zucker': 10177, 'brazile': 10178, 'blaster': 10179, 'confidential': 10180, 'alma': 10181, 'mater': 10182, 'invincible': 10183, 'gridlock': 10184, 'pussies': 10185, 'detainee': 10186, 'ymca': 10187, 'ivf': 10188, 'accommodations': 10189, 'teuwen': 10190, 'piers': 10191, 'lipped': 10192, 'friendships': 10193, 'pokey': 10194, 'snowy': 10195, 'ram': 10196, 'cleopatra': 10197, 'aka': 10198, 'wharton': 10199, 'tuskegee': 10200, 'iger': 10201, 'prostitution': 10202, 'lang': 10203, 'unsightly': 10204, 'lieutenant': 10205, 'questionable': 10206, 'hectic': 10207, 'stamina': 10208, 'enviros': 10209, 'jargon': 10210, 'garfield': 10211, 'bauer': 10212, 'homeowners': 10213, 'seas': 10214, 'moran': 10215, 'gory': 10216, 'rebirth': 10217, 'conquer': 10218, 'trials': 10219, 'cuddle': 10220, 'vitter': 10221, 'quell': 10222, 'rarely': 10223, 'discreetly': 10224, 'perspectives': 10225, 'deputize': 10226, 'repulse': 10227, 'autopilot': 10228, 'weirdos': 10229, 'ama': 10230, 'dredge': 10231, 'colorize': 10232, 'chaplains': 10233, 'counselors': 10234, 'pastors': 10235, 'adler': 10236, 'culmination': 10237, 'guam': 10238, 'compensate': 10239, 'contentment': 10240, 'brunette': 10241, 'bleach': 10242, 'rhode': 10243, 'michaels': 10244, 'breakers': 10245, 'twilight': 10246, 'tamblyn': 10247, 'actresses': 10248, 'populist': 10249, 'denuclearization': 10250, 'herculean': 10251, 'pas': 10252, 'mvps': 10253, 'conferences': 10254, 'dolezal': 10255, 'hitter': 10256, 'du': 10257, 'grovel': 10258, 'busboy': 10259, 'knuckle': 10260, 'nosebleed': 10261, 'juices': 10262, 'gingerly': 10263, 'odessa': 10264, 'tnt': 10265, 'horseman': 10266, 'ibiza': 10267, 'doris': 10268, 'kindred': 10269, 'hustle': 10270, 'subsidiary': 10271, 'earbud': 10272, 'medalist': 10273, 'dina': 10274, 'skittish': 10275, 'dartmouth': 10276, 'monkfish': 10277, 'vegans': 10278, 'hiker': 10279, 'thornton': 10280, 'glorify': 10281, 'terrence': 10282, 'collaborative': 10283, 'anybody': 10284, 'caretaker': 10285, 'kodak': 10286, 'rowboat': 10287, 'patronize': 10288, 'kathie': 10289, 'gifford': 10290, 'walsh': 10291, 'algeria': 10292, 'hen': 10293, 'ayman': 10294, 'composite': 10295, 'gunshot': 10296, 'schieffer': 10297, 'clause': 10298, 'propel': 10299, 'kiddie': 10300, 'nudge': 10301, 'mclaughlin': 10302, 'pamphlet': 10303, 'postage': 10304, 'connor': 10305, 'geniuses': 10306, 'shine': 10307, 'suppression': 10308, 'whim': 10309, 'exotic': 10310, 'vacant': 10311, 'basics': 10312, 'cortex': 10313, 'impulsive': 10314, 'ufc': 10315, 'heap': 10316, 'apex': 10317, 'sorta': 10318, 'autoerotic': 10319, 'asphyxiation': 10320, 'toad': 10321, 'imminent': 10322, 'nemo': 10323, 'philharmonic': 10324, 'exhume': 10325, 'subsidy': 10326, 'limo': 10327, 'gape': 10328, 'ferris': 10329, 'dictate': 10330, 'retard': 10331, 'schilling': 10332, 'chronicle': 10333, 'regimen': 10334, 'glade': 10335, 'sharia': 10336, 'christensen': 10337, 'briar': 10338, 'val': 10339, 'chmerkovskiy': 10340, 'nutritionist': 10341, 'perriello': 10342, 'stripe': 10343, 'bobsled': 10344, 'economically': 10345, 'livelihood': 10346, 'intensely': 10347, 'strangest': 10348, 'millennium': 10349, 'peep': 10350, 'boneless': 10351, 'finland': 10352, 'condoleezza': 10353, 'inflame': 10354, 'rotation': 10355, 'mulan': 10356, 'eden': 10357, 'knockoff': 10358, 'immeasurable': 10359, 'jumble': 10360, 'celtic': 10361, 'uneducated': 10362, 'leaguers': 10363, 'playfully': 10364, 'divisive': 10365, 'caloric': 10366, 'intolerant': 10367, 'scarier': 10368, 'legislative': 10369, 'rundown': 10370, 'robust': 10371, 'putter': 10372, 'schoolchildren': 10373, 'greenland': 10374, 'deform': 10375, 'lactate': 10376, 'ge': 10377, 'wildcat': 10378, 'youtuber': 10379, 'spongebob': 10380, 'tile': 10381, 'krill': 10382, 'coerce': 10383, 'straighten': 10384, 'veterinarian': 10385, 'paparazzi': 10386, 'grossest': 10387, 'corny': 10388, 'rosemary': 10389, 'lighten': 10390, 'subdue': 10391, 'dugout': 10392, 'inherit': 10393, 'wedge': 10394, 'decree': 10395, 'leto': 10396, 'compatible': 10397, 'gutter': 10398, 'counterproductive': 10399, 'abbas': 10400, 'mortician': 10401, 'decluttering': 10402, 'tuesdays': 10403, 'bestseller': 10404, 'arrivals': 10405, 'peterson': 10406, 'mugshot': 10407, 'propublica': 10408, 'wannabe': 10409, 'sniff': 10410, 'sympathizers': 10411, 'embolden': 10412, 'acquittal': 10413, 'reapplies': 10414, 'carmex': 10415, 'intervals': 10416, 'boner': 10417, 'kellogg': 10418, 'oversight': 10419, 'goofy': 10420, 'ridge': 10421, 'rebellion': 10422, 'kickstarter': 10423, 'tig': 10424, 'notaro': 10425, 'planners': 10426, 'rodgers': 10427, 'declaration': 10428, 'swine': 10429, 'exceptionally': 10430, 'scalp': 10431, 'nov': 10432, 'std': 10433, 'repulsive': 10434, 'rewatching': 10435, 'photoshop': 10436, 'abduct': 10437, 'diarrhea': 10438, 'grandmaster': 10439, 'lewinsky': 10440, 'raisinets': 10441, 'coffers': 10442, 'harbinger': 10443, 'bizarrely': 10444, 'newfront': 10445, 'aoki': 10446, 'demonic': 10447, 'jennings': 10448, 'newsrooms': 10449, 'espionage': 10450, 'aviary': 10451, 'elitist': 10452, 'publications': 10453, 'tyra': 10454, 'gavel': 10455, 'trendy': 10456, 'madeleine': 10457, 'aereo': 10458, 'satire': 10459, 'kagan': 10460, 'telecast': 10461, 'viewership': 10462, 'envision': 10463, 'lofty': 10464, 'slower': 10465, 'reuben': 10466, 'mustard': 10467, 'physicist': 10468, 'gestapo': 10469, 'killers': 10470, 'grover': 10471, 'genuinely': 10472, 'cuter': 10473, 'mandy': 10474, 'icbm': 10475, 'discriminatory': 10476, 'revolt': 10477, 'socioeconomic': 10478, 'bracket': 10479, 'morty': 10480, 'stylist': 10481, 'omit': 10482, 'uninterested': 10483, 'goulding': 10484, 'instinctively': 10485, 'footballs': 10486, 'pedophile': 10487, 'suburb': 10488, 'heirs': 10489, 'attenborough': 10490, 'wu': 10491, 'tang': 10492, 'clan': 10493, 'slideshow': 10494, 'anguish': 10495, 'sultry': 10496, 'fluent': 10497, 'sleek': 10498, 'foxconn': 10499, 'carrey': 10500, 'danielle': 10501, 'macdonald': 10502, 'unforgivable': 10503, 'mackenzie': 10504, 'distractions': 10505, 'chibok': 10506, 'prodigy': 10507, 'fable': 10508, 'guru': 10509, 'enthusiastic': 10510, 'passerby': 10511, 'timeline': 10512, 'zodiac': 10513, 'restrooms': 10514, 'liechtenstein': 10515, 'skunk': 10516, 'renovate': 10517, 'tickle': 10518, 'gadot': 10519, 'racy': 10520, 'icky': 10521, 'geithner': 10522, 'freshness': 10523, 'psych': 10524, 'evasion': 10525, 'manipulation': 10526, 'reuse': 10527, 'eyelashes': 10528, 'arlington': 10529, 'crackers': 10530, 'scanner': 10531, 'secrecy': 10532, 'colonization': 10533, 'funnies': 10534, 'dryers': 10535, 'investor': 10536, 'hemingway': 10537, 'usually': 10538, 'pharmacy': 10539, 'feedback': 10540, 'misogynist': 10541, 'premiums': 10542, 'glands': 10543, 'encase': 10544, 'ar': 10545, 'hater': 10546, 'programmatic': 10547, 'jameson': 10548, 'electrify': 10549, 'clearances': 10550, 'harley': 10551, 'clingy': 10552, 'dobrev': 10553, 'deprecate': 10554, 'mocha': 10555, 'bmw': 10556, 'bungle': 10557, 'lube': 10558, 'honduran': 10559, 'marc': 10560, 'colonialism': 10561, 'screenplay': 10562, 'exile': 10563, 'sentiment': 10564, 'norm': 10565, 'col': 10566, 'catherine': 10567, 'iheartradio': 10568, 'pregnancies': 10569, 'threesome': 10570, 'burmese': 10571, 'warwick': 10572, 'bobbi': 10573, 'kristina': 10574, 'sludge': 10575, 'dune': 10576, 'hordes': 10577, 'rust': 10578, 'ingrown': 10579, 'tango': 10580, 'mailer': 10581, 'popovich': 10582, 'flexible': 10583, 'insecure': 10584, 'ransom': 10585, 'cruelly': 10586, 'xavier': 10587, 'dolan': 10588, 'accurately': 10589, 'carousel': 10590, 'deadlocked': 10591, 'osha': 10592, 'ops': 10593, 'throats': 10594, 'apathy': 10595, 'skeletons': 10596, 'infectious': 10597, 'avenge': 10598, 'tarantula': 10599, 'khlo': 10600, 'marsh': 10601, 'unwinnable': 10602, 'foolproof': 10603, 'jewry': 10604, 'herb': 10605, 'casualties': 10606, 'moltzvah': 10607, 'impersonate': 10608, 'cuisine': 10609, 'darkest': 10610, 'forklift': 10611, 'stepson': 10612, 'ahs': 10613, 'teasers': 10614, 'fives': 10615, 'crouch': 10616, 'bod': 10617, 'jockey': 10618, 'draftkings': 10619, 'gummi': 10620, 'unharmed': 10621, 'pita': 10622, 'huh': 10623, 'disguise': 10624, 'contender': 10625, 'attractions': 10626, 'adnan': 10627, 'syed': 10628, 'guitarist': 10629, 'delaria': 10630, 'obedience': 10631, 'freely': 10632, 'napkins': 10633, 'honduras': 10634, 'afi': 10635, 'quantum': 10636, 'menendez': 10637, 'voucher': 10638, 'psychotic': 10639, 'literature': 10640, 'logan': 10641, 'juniors': 10642, 'softly': 10643, 'heterosexual': 10644, 'rumour': 10645, 'kimora': 10646, 'darn': 10647, 'kleenex': 10648, 'inadequately': 10649, 'warfare': 10650, 'uncontrollably': 10651, 'encouragement': 10652, 'decriminalize': 10653, 'tri': 10654, 'magnificent': 10655, 'grasshopper': 10656, 'trumpian': 10657, 'spokeswoman': 10658, 'gabby': 10659, 'giffords': 10660, 'recommit': 10661, 'treatable': 10662, 'contort': 10663, 'hellmann': 10664, 'heir': 10665, 'jpmorgan': 10666, 'ouija': 10667, 'prairie': 10668, 'manga': 10669, 'butterball': 10670, 'woodwork': 10671, 'robocall': 10672, 'culturally': 10673, 'proudest': 10674, 'conventionally': 10675, 'chaotic': 10676, 'beekeeper': 10677, 'wrestler': 10678, 'takedown': 10679, 'succeed': 10680, 'burke': 10681, 'halle': 10682, 'medals': 10683, 'wiener': 10684, 'alfonso': 10685, 'ribeiro': 10686, 'dumpling': 10687, 'darling': 10688, 'scripps': 10689, 'disturbance': 10690, 'sprite': 10691, 'cola': 10692, 'emerson': 10693, 'cere': 10694, 'rekindle': 10695, 'winston': 10696, 'hypnotic': 10697, 'cyberattack': 10698, 'australians': 10699, 'airways': 10700, 'yearly': 10701, 'storybook': 10702, 'jingle': 10703, 'rodeo': 10704, 'merchandise': 10705, 'ginger': 10706, 'missions': 10707, 'angst': 10708, 'stool': 10709, 'rerouting': 10710, 'kkk': 10711, 'headscarf': 10712, 'vibrate': 10713, 'redesign': 10714, 'kramer': 10715, 'wisely': 10716, 'feeble': 10717, 'schism': 10718, 'toni': 10719, 'braxton': 10720, 'unbreak': 10721, 'plat': 10722, 'formulate': 10723, 'hinder': 10724, 'pharoah': 10725, 'sizemore': 10726, 'kotex': 10727, 'confetti': 10728, 'popper': 10729, 'levitt': 10730, 'vanquish': 10731, 'goblet': 10732, 'subhuman': 10733, 'ethan': 10734, 'hawke': 10735, 'laurel': 10736, 'pringles': 10737, 'skid': 10738, 'masochists': 10739, 'outpouring': 10740, 'nas': 10741, 'momoa': 10742, 'twentysomething': 10743, 'flume': 10744, 'nicky': 10745, 'predictably': 10746, 'melanie': 10747, 'superintendent': 10748, 'zachary': 10749, 'quinto': 10750, 'territory': 10751, 'robotics': 10752, 'videotape': 10753, 'walkway': 10754, 'ugliness': 10755, 'hush': 10756, 'cellmate': 10757, 'tuberculosis': 10758, 'obvi': 10759, 'laffy': 10760, 'taffy': 10761, 'joyful': 10762, 'milestones': 10763, 'celebrations': 10764, 'eternally': 10765, 'phenomenon': 10766, 'thaw': 10767, 'shards': 10768, 'bouquet': 10769, 'showerhead': 10770, 'goer': 10771, 'anorexia': 10772, 'credible': 10773, 'univision': 10774, 'hairdresser': 10775, 'butcher': 10776, 'narratives': 10777, 'trimester': 10778, 'otter': 10779, 'taller': 10780, 'livable': 10781, 'drinker': 10782, 'fluorescent': 10783, 'burglary': 10784, 'bystander': 10785, 'solitaire': 10786, 'ailey': 10787, 'albany': 10788, 'coco': 10789, 'believers': 10790, 'atop': 10791, 'pompous': 10792, 'aficionado': 10793, 'reiner': 10794, 'profess': 10795, 'goth': 10796, 'imdb': 10797, 'specifics': 10798, 'unnamed': 10799, 'edgy': 10800, 'seaside': 10801, 'eject': 10802, 'womanhood': 10803, 'homemaker': 10804, 'octopus': 10805, 'leah': 10806, 'remini': 10807, 'slater': 10808, 'tbs': 10809, 'marshall': 10810, 'successor': 10811, 'expendables': 10812, 'demographics': 10813, 'hoagie': 10814, 'observations': 10815, 'southeast': 10816, 'devito': 10817, 'huff': 10818, 'brooke': 10819, 'hugo': 10820, 'startups': 10821, 'dictator': 10822, 'murals': 10823, 'portable': 10824, 'treasurer': 10825, 'scenarios': 10826, 'disfigure': 10827, 'snapshot': 10828, 'teresa': 10829, 'julius': 10830, 'itunes': 10831, 'markered': 10832, 'gossip': 10833, 'gorge': 10834, 'geode': 10835, 'innocuous': 10836, 'deng': 10837, 'xiaoping': 10838, 'traumatize': 10839, 'dock': 10840, 'primal': 10841, 'lightsaber': 10842, 'cbo': 10843, 'cleric': 10844, 'marlboro': 10845, 'sinus': 10846, 'compassionate': 10847, 'randy': 10848, 'telemedicine': 10849, 'resurrect': 10850, 'strangulation': 10851, 'turret': 10852, 'malaysian': 10853, 'motive': 10854, 'nerdy': 10855, 'belgian': 10856, 'harvest': 10857, 'legislate': 10858, 'tow': 10859, 'regal': 10860, 'cellulite': 10861, 'settings': 10862, 'recreational': 10863, 'distinction': 10864, 'nauseous': 10865, 'cellar': 10866, 'statehouse': 10867, 'wigs': 10868, 'ledecky': 10869, 'manifest': 10870, 'janelle': 10871, 'hbcus': 10872, 'mapplethorpe': 10873, 'escalation': 10874, 'lava': 10875, 'giggle': 10876, 'clint': 10877, 'misconceptions': 10878, 'hebrew': 10879, 'chippewa': 10880, 'suppress': 10881, 'diver': 10882, 'scallop': 10883, 'renowned': 10884, 'ornithologist': 10885, 'inadequate': 10886, 'intercourse': 10887, 'pagos': 10888, 'earbuds': 10889, 'ariel': 10890, 'granddaughter': 10891, 'archdiocese': 10892, 'guardian': 10893, 'ja': 10894, 'vu': 10895, 'exclamation': 10896, 'gabriel': 10897, 'loc': 10898, 'glamour': 10899, 'fabled': 10900, 'solstice': 10901, 'sumptuous': 10902, 'vary': 10903, 'doobie': 10904, 'hygiene': 10905, 'dubious': 10906, 'moss': 10907, 'bowe': 10908, 'contend': 10909, 'motorize': 10910, 'rosetta': 10911, 'epitome': 10912, 'raspberry': 10913, 'frankenstein': 10914, 'embezzlement': 10915, 'pta': 10916, 'mitzvah': 10917, 'typecast': 10918, 'gentleman': 10919, 'jiffy': 10920, 'dilapidate': 10921, 'adequately': 10922, 'winslet': 10923, 'regressive': 10924, 'discourse': 10925, 'conclusions': 10926, 'woodpecker': 10927, 'adventurous': 10928, 'orangutan': 10929, 'underscore': 10930, 'messi': 10931, 'bahamas': 10932, 'graciously': 10933, 'audible': 10934, 'relative': 10935, 'poultry': 10936, 'hardly': 10937, 'adrift': 10938, 'bendy': 10939, 'jamal': 10940, 'hurtful': 10941, 'fatherhood': 10942, 'intersection': 10943, 'cellphone': 10944, 'crucifixion': 10945, 'zsa': 10946, 'maybelline': 10947, 'mighty': 10948, 'baker': 10949, 'windfall': 10950, 'conclusion': 10951, 'devotion': 10952, 'facilities': 10953, 'profanity': 10954, 'seminar': 10955, 'preside': 10956, 'bestow': 10957, 'joplin': 10958, 'format': 10959, 'cram': 10960, 'gardner': 10961, 'bipartisanship': 10962, 'fireflies': 10963, 'irl': 10964, 'fork': 10965, 'detractors': 10966, 'orphanage': 10967, 'buzzword': 10968, 'despacito': 10969, 'translation': 10970, 'disagreements': 10971, 'interracial': 10972, 'pixies': 10973, 'staunch': 10974, 'enquirer': 10975, 'overrate': 10976, 'monteith': 10977, 'lemonade': 10978, 'cafeteria': 10979, 'outcomes': 10980, 'intercontinental': 10981, 'disapprove': 10982, 'plummer': 10983, 'feign': 10984, 'anonymously': 10985, 'sensitivity': 10986, 'cond': 10987, 'nast': 10988, 'lori': 10989, 'loughlin': 10990, 'performances': 10991, 'resuscitate': 10992, 'amc': 10993, 'rescuer': 10994, 'oily': 10995, 'mercifully': 10996, 'batch': 10997, 'socal': 10998, 'oven': 10999, 'uighur': 11000, 'cliffhanger': 11001, 'somethings': 11002, 'decadent': 11003, 'watkins': 11004, 'comfy': 11005, 'distribute': 11006, 'pharaoh': 11007, 'persist': 11008, 'autonomy': 11009, 'bro': 11010, 'hopeless': 11011, 'statehood': 11012, 'latex': 11013, 'narco': 11014, 'sunrise': 11015, 'suburbanite': 11016, 'salma': 11017, 'hayek': 11018, 'involvement': 11019, 'radicalization': 11020, 'contestant': 11021, 'pistol': 11022, 'gangsta': 11023, 'frankie': 11024, 'blankenship': 11025, 'vengeance': 11026, 'inventions': 11027, 'supergroup': 11028, 'pond': 11029, 'handsy': 11030, 'dramatically': 11031, 'oaths': 11032, 'masturbator': 11033, 'orientation': 11034, 'dedication': 11035, 'sealant': 11036, 'gandhi': 11037, 'lightsabers': 11038, 'implode': 11039, 'mumbai': 11040, 'tester': 11041, 'canon': 11042, 'sunscreen': 11043, 'triumphantly': 11044, 'ought': 11045, 'schizophrenic': 11046, 'wrestlers': 11047, 'whitman': 11048, 'mussolini': 11049, 'intentions': 11050, 'geopolitical': 11051, 'drastically': 11052, 'ficus': 11053, 'robinson': 11054, 'zinn': 11055, 'polluters': 11056, 'narrate': 11057, 'ransack': 11058, 'obsessively': 11059, 'disbelief': 11060, 'intentional': 11061, 'offbeat': 11062, 'ty': 11063, 'herndon': 11064, 'fetch': 11065, 'daley': 11066, 'purina': 11067, 'frankly': 11068, 'altoid': 11069, 'nevertrump': 11070, 'cascade': 11071, 'ammunition': 11072, 'pong': 11073, 'fuss': 11074, 'symbolism': 11075, 'incorporate': 11076, 'buster': 11077, 'franzen': 11078, 'idyllic': 11079, 'continent': 11080, 'allegation': 11081, 'deceptive': 11082, 'nafta': 11083, 'insurer': 11084, 'clarissa': 11085, 'custard': 11086, 'tens': 11087, 'dempsey': 11088, 'berserk': 11089, 'descent': 11090, 'quota': 11091, 'undiagnosed': 11092, 'wrongdoing': 11093, 'futility': 11094, 'contrarian': 11095, 'consensus': 11096, 'heather': 11097, 'illegally': 11098, 'phillips': 11099, 'mulligan': 11100, 'gifs': 11101, 'grizzlies': 11102, 'gentlemen': 11103, 'gymnasium': 11104, 'anita': 11105, 'snowboarders': 11106, 'scully': 11107, 'unseen': 11108, 'rollins': 11109, 'greeks': 11110, 'dslr': 11111, 'cobble': 11112, 'wooded': 11113, 'equipment': 11114, 'willingly': 11115, 'fend': 11116, 'arias': 11117, 'tub': 11118, 'stamos': 11119, 'sellout': 11120, 'vulgar': 11121, 'blm': 11122, 'mobilize': 11123, 'reps': 11124, 'playoffs': 11125, 'mcdonnell': 11126, 'rebecca': 11127, 'biz': 11128, 'suckers': 11129, 'zogby': 11130, 'educators': 11131, 'comply': 11132, 'ecstatic': 11133, 'redbox': 11134, 'posse': 11135, 'worm': 11136, 'splash': 11137, 'indianapolis': 11138, 'recline': 11139, 'sunlight': 11140, 'jewel': 11141, 'layout': 11142, 'underneath': 11143, 'shia': 11144, 'destroyer': 11145, 'gynecologists': 11146, 'backlogged': 11147, 'bits': 11148, 'paranormal': 11149, 'senility': 11150, 'decor': 11151, 'expiration': 11152, 'tailgate': 11153, 'morton': 11154, 'coli': 11155, 'assassinate': 11156, 'mercury': 11157, 'mustache': 11158, 'hydrant': 11159, 'gunk': 11160, 'weasel': 11161, 'mend': 11162, 'unspoken': 11163, 'exceptional': 11164, 'dermatologists': 11165, 'eileen': 11166, 'gervais': 11167, 'vampires': 11168, 'dishevel': 11169, 'clapton': 11170, 'trucker': 11171, 'destine': 11172, 'majestic': 11173, 'excommunication': 11174, 'milkshake': 11175, 'erivo': 11176, 'aloof': 11177, 'snape': 11178, 'popsicle': 11179, 'epiphany': 11180, 'marshal': 11181, 'avenue': 11182, 'brunt': 11183, 'jasmine': 11184, 'anthrax': 11185, 'pistachios': 11186, 'eggers': 11187, 'vodka': 11188, 'bunker': 11189, 'divers': 11190, 'circumstances': 11191, 'virtue': 11192, 'checker': 11193, 'skewer': 11194, 'differ': 11195, 'keanu': 11196, 'reeve': 11197, 'enchilada': 11198, 'subside': 11199, 'slush': 11200, 'cutler': 11201, 'dystopia': 11202, 'laborer': 11203, 'gloria': 11204, 'improbable': 11205, 'boozy': 11206, 'madrid': 11207, 'claritin': 11208, 'kristol': 11209, 'suzanne': 11210, 'sensors': 11211, 'et': 11212, 'logical': 11213, 'laud': 11214, 'neutral': 11215, 'unheard': 11216, 'treater': 11217, 'cranston': 11218, 'camaros': 11219, 'sylvia': 11220, 'pinch': 11221, 'amish': 11222, 'lamprey': 11223, 'umbrella': 11224, 'honesty': 11225, 'chesney': 11226, 'hormonal': 11227, 'stonehenge': 11228, 'pornographic': 11229, 'disrespectful': 11230, 'motor': 11231, 'transmute': 11232, 'sioux': 11233, 'distress': 11234, 'beep': 11235, 'noticeably': 11236, 'effigies': 11237, 'abridge': 11238, 'visionary': 11239, 'ponder': 11240, 'toadstool': 11241, 'religions': 11242, 'foie': 11243, 'gras': 11244, 'twister': 11245, 'offset': 11246, 'footprint': 11247, 'completion': 11248, 'scumbag': 11249, 'evoke': 11250, 'uma': 11251, 'thurman': 11252, 'sire': 11253, 'conception': 11254, 'arne': 11255, 'exhibition': 11256, 'percentage': 11257, 'robertson': 11258, 'vaccination': 11259, 'kattan': 11260, 'overdue': 11261, 'improper': 11262, 'ibm': 11263, 'bitterly': 11264, 'freedoms': 11265, 'propecia': 11266, 'goers': 11267, 'infertile': 11268, 'emit': 11269, 'psychiatric': 11270, 'truthful': 11271, 'rocketman': 11272, 'standout': 11273, 'beanie': 11274, 'pinpoint': 11275, 'caddy': 11276, 'multicolor': 11277, 'lumber': 11278, 'researcher': 11279, 'mattis': 11280, 'fiat': 11281, 'sweaty': 11282, 'phony': 11283, 'gondolier': 11284, 'toughest': 11285, 'charisma': 11286, 'rabies': 11287, 'parliamentary': 11288, 'priyanka': 11289, 'barneys': 11290, 'miniskirt': 11291, 'phlegm': 11292, 'pounce': 11293, 'revamp': 11294, 'dwindle': 11295, 'insta': 11296, 'admiral': 11297, 'drench': 11298, 'profiteer': 11299, 'classical': 11300, 'na': 11301, 'repudiate': 11302, 'rear': 11303, 'headset': 11304, 'beethoven': 11305, 'legislator': 11306, 'schneiderman': 11307, 'vaccinations': 11308, 'khamenei': 11309, 'silas': 11310, 'statewide': 11311, 'eiffel': 11312, 'vanessa': 11313, 'doppelg': 11314, 'nger': 11315, 'miraculously': 11316, 'rubble': 11317, 'outstanding': 11318, 'traffickers': 11319, 'bout': 11320, 'appetite': 11321, 'truce': 11322, 'cadbury': 11323, 'creme': 11324, 'cynical': 11325, 'daraya': 11326, 'heady': 11327, 'grecian': 11328, 'credibility': 11329, 'educational': 11330, 'outpace': 11331, 'fanatics': 11332, 'banish': 11333, 'doorway': 11334, 'morality': 11335, 'reminisce': 11336, 'tapas': 11337, 'roil': 11338, 'patriotism': 11339, 'senile': 11340, 'lobsters': 11341, 'hoverboard': 11342, 'sorrow': 11343, 'beverly': 11344, 'auctioneer': 11345, 'probation': 11346, 'banners': 11347, 'posterity': 11348, 'scotch': 11349, 'gump': 11350, 'politely': 11351, 'groundhog': 11352, 'kasparov': 11353, 'getaways': 11354, 'clients': 11355, 'di': 11356, 'firenze': 11357, 'williamson': 11358, 'hamsters': 11359, 'asses': 11360, 'circumcise': 11361, 'skywalker': 11362, 'bundchen': 11363, 'normalcy': 11364, 'transcendent': 11365, 'significance': 11366, 'closely': 11367, 'backseat': 11368, 'bugle': 11369, 'miscarriage': 11370, 'conundrum': 11371, 'canvass': 11372, 'acetaminophen': 11373, 'oversize': 11374, 'emergence': 11375, 'barker': 11376, 'barron': 11377, 'slugger': 11378, 'travolta': 11379, 'skilled': 11380, 'sotheby': 11381, 'itch': 11382, 'butch': 11383, 'monroe': 11384, 'potty': 11385, 'unwilling': 11386, 'skydive': 11387, 'ibtihaj': 11388, 'ledge': 11389, 'obligation': 11390, 'rigorous': 11391, 'synergy': 11392, 'fluster': 11393, 'fundamentalist': 11394, 'handwritten': 11395, 'socialism': 11396, 'priscilla': 11397, 'spinster': 11398, 'showcase': 11399, 'flutter': 11400, 'shuttlecock': 11401, 'welter': 11402, 'pew': 11403, 'seasonally': 11404, 'unpatriotic': 11405, 'subsidize': 11406, 'surinamese': 11407, 'standby': 11408, 'childless': 11409, 'atv': 11410, 'wino': 11411, 'lebowski': 11412, 'grassroots': 11413, 'quadruple': 11414, 'priority': 11415, 'bornstein': 11416, 'marketer': 11417, 'capsize': 11418, 'contentedly': 11419, 'misappropriate': 11420, 'medics': 11421, 'calorie': 11422, 'heartbreakingly': 11423, 'unseat': 11424, 'shakira': 11425, 'organizations': 11426, 'denzel': 11427, 'tingle': 11428, 'communication': 11429, 'thailand': 11430, 'inflate': 11431, 'pajamas': 11432, 'prosecution': 11433, 'wreath': 11434, 'commerce': 11435, 'framework': 11436, 'shithead': 11437, 'bandmates': 11438, 'disorient': 11439, 'energize': 11440, 'centuries': 11441, 'superpowers': 11442, 'impersonation': 11443, 'brewers': 11444, 'priceless': 11445, 'americana': 11446, 'cede': 11447, 'optimism': 11448, 'nationals': 11449, 'ventimiglia': 11450, 'abdomen': 11451, 'pimp': 11452, 'converse': 11453, 'legged': 11454, 'coppola': 11455, 'godfather': 11456, 'manner': 11457, 'byproducts': 11458, 'bakula': 11459, 'communist': 11460, 'interfere': 11461, 'bj': 11462, 'rk': 11463, 'moma': 11464, 'animation': 11465, 'hikers': 11466, 'corrections': 11467, 'gallant': 11468, 'quentin': 11469, 'obliterate': 11470, 'workaholic': 11471, 'minestrone': 11472, 'considerations': 11473, 'besties': 11474, 'fran': 11475, 'drescher': 11476, 'screech': 11477, 'embodiment': 11478, 'laureates': 11479, 'stiller': 11480, 'shoo': 11481, 'goodman': 11482, 'predictions': 11483, 'fiercest': 11484, 'etsy': 11485, 'oats': 11486, 'sally': 11487, 'politico': 11488, 'bundle': 11489, 'clapper': 11490, 'perot': 11491, 'torment': 11492, 'suffocate': 11493, 'overheat': 11494, 'mafia': 11495, 'solvers': 11496, 'earhart': 11497, 'exploratory': 11498, 'complicit': 11499, 'hygienist': 11500, 'shiny': 11501, 'undertaker': 11502, 'conceivable': 11503, 'roach': 11504, 'footsteps': 11505, 'anonymity': 11506, 'overeat': 11507, 'blahs': 11508, 'meatball': 11509, 'predicament': 11510, 'unqualified': 11511, 'menstrual': 11512, 'rebate': 11513, 'unlabeled': 11514, 'recorder': 11515, 'hibernation': 11516, 'mores': 11517, 'agonize': 11518, 'postseason': 11519, 'chores': 11520, 'interactions': 11521, 'grapple': 11522, 'trove': 11523, 'input': 11524, 'dmv': 11525, 'snowman': 11526, 'degenerate': 11527, 'marty': 11528, 'downstairs': 11529, 'leprosy': 11530, 'essentially': 11531, 'henchmen': 11532, 'cataclysmic': 11533, 'unimpressive': 11534, 'stouffer': 11535, 'wtf': 11536, 'calvin': 11537, 'housekeeper': 11538, 'triumphant': 11539, 'dew': 11540, 'collisions': 11541, 'terminally': 11542, 'podiatrist': 11543, 'climatologists': 11544, 'gerald': 11545, 'hazmat': 11546, 'reliable': 11547, 'integrative': 11548, 'dzhokar': 11549, 'giraffes': 11550, 'unsurprisingly': 11551, 'embellish': 11552, 'pod': 11553, 'horton': 11554, 'coolness': 11555, 'accuracy': 11556, 'jaguars': 11557, 'clamor': 11558, 'rustic': 11559, 'trim': 11560, 'undress': 11561, 'falwell': 11562, 'billow': 11563, 'clinical': 11564, 'teeny': 11565, 'duct': 11566, 'wellbeing': 11567, 'quarterly': 11568, 'untold': 11569, 'eviction': 11570, 'existential': 11571, 'stats': 11572, 'inflation': 11573, 'violin': 11574, 'sharper': 11575, 'vcr': 11576, 'behave': 11577, 'kiosk': 11578, 'sorely': 11579, 'outfox': 11580, 'exoskeleton': 11581, 'jobless': 11582, 'museums': 11583, 'thoroughly': 11584, 'goodyear': 11585, 'advent': 11586, 'walton': 11587, 'ladle': 11588, 'downgrade': 11589, 'blowout': 11590, 'sext': 11591, 'cyanide': 11592, 'manhunt': 11593, 'vilify': 11594, 'beguile': 11595, 'constructionist': 11596, 'meteorologists': 11597, 'moviepass': 11598, 'lyne': 11599, 'carrington': 11600, 'irrelevant': 11601, 'conscience': 11602, 'mercedes': 11603, 'ruehl': 11604, 'flashy': 11605, 'numb': 11606, 'unfazed': 11607, 'buscemi': 11608, 'compton': 11609, 'slightest': 11610, 'downey': 11611, 'nightmarish': 11612, 'blacksmith': 11613, 'tracker': 11614, 'attackers': 11615, 'fig': 11616, 'ballad': 11617, 'boldly': 11618, 'temporal': 11619, 'jude': 11620, 'oaf': 11621, 'scuba': 11622, 'linkedin': 11623, 'railway': 11624, 'whereabouts': 11625, 'demonize': 11626, 'advancement': 11627, 'idris': 11628, 'elba': 11629, 'crumple': 11630, 'billie': 11631, 'unjustified': 11632, 'outcast': 11633, 'reconcile': 11634, 'cannibal': 11635, 'hayride': 11636, 'saber': 11637, 'urgency': 11638, 'tableau': 11639, 'sordid': 11640, 'foresee': 11641, 'puff': 11642, 'gauge': 11643, 'groove': 11644, 'sleazy': 11645, 'butina': 11646, 'whimper': 11647, 'spinal': 11648, 'mixers': 11649, 'roadblocks': 11650, 'spatial': 11651, 'deprave': 11652, 'misshapen': 11653, 'zellweger': 11654, 'variant': 11655, 'nub': 11656, 'theroux': 11657, 'marcoses': 11658, 'inhibitions': 11659, 'absurdity': 11660, 'jaime': 11661, 'ankles': 11662, 'lanyard': 11663, 'meth': 11664, 'inflatable': 11665, 'photoshoot': 11666, 'announcer': 11667, 'macau': 11668, 'acclaim': 11669, 'positivity': 11670, 'loveless': 11671, 'ezell': 11672, 'flashback': 11673, 'farrow': 11674, 'enchiladas': 11675, 'selectively': 11676, 'holloway': 11677, 'shapeless': 11678, 'khakis': 11679, 'genie': 11680, 'rickles': 11681, 'gouge': 11682, 'gulp': 11683, 'yuletide': 11684, 'tr': 11685, 'memes': 11686, 'nippy': 11687, 'dachshund': 11688, 'antidote': 11689, 'rouhani': 11690, 'schiavo': 11691, 'portugal': 11692, 'hannibal': 11693, 'bur': 11694, 'quincy': 11695, 'interpret': 11696, 'horny': 11697, 'jealousy': 11698, 'glimmer': 11699, 'reverberate': 11700, 'terse': 11701, 'raffle': 11702, 'combos': 11703, 'chavez': 11704, 'chives': 11705, 'sigma': 11706, 'mick': 11707, 'mulvaney': 11708, 'gravity': 11709, 'midair': 11710, 'forgetful': 11711, 'memoriam': 11712, 'vocalist': 11713, 'calculations': 11714, 'ozzy': 11715, 'preservation': 11716, 'appearances': 11717, 'mudslide': 11718, 'rpg': 11719, 'taboo': 11720, 'displace': 11721, 'tricycle': 11722, 'vader': 11723, 'roulette': 11724, 'promptly': 11725, 'deftly': 11726, 'nonstop': 11727, 'lorde': 11728, 'overenthusiastic': 11729, 'outweigh': 11730, 'turf': 11731, 'juliette': 11732, 'feld': 11733, 'extraterrestrial': 11734, 'gaetz': 11735, 'pesticides': 11736, 'mold': 11737, 'exhilarate': 11738, 'jigsaw': 11739, 'expectancy': 11740, 'convictions': 11741, 'overeager': 11742, 'flagship': 11743, 'kat': 11744, 'embezzle': 11745, 'taster': 11746, 'jab': 11747, 'tivo': 11748, 'owen': 11749, 'boundless': 11750, 'catalonia': 11751, 'vuitton': 11752, 'mangle': 11753, 'millionth': 11754, 'diplomats': 11755, 'individuals': 11756, 'exuberant': 11757, 'icu': 11758, 'facilitate': 11759, 'eyesore': 11760, 'campers': 11761, 'steady': 11762, 'hedwig': 11763, 'badger': 11764, 'dammit': 11765, 'mnuchin': 11766, 'reverend': 11767, 'jettison': 11768, 'clif': 11769, 'quaint': 11770, 'dumbledore': 11771, 'twinkle': 11772, 'moses': 11773, 'nestle': 11774, 'fyre': 11775, 'homer': 11776, 'mixtape': 11777, 'ajit': 11778, 'pai': 11779, 'upfront': 11780, 'yup': 11781, 'wwe': 11782, 'noir': 11783, 'tack': 11784, 'reconstruct': 11785, 'disdain': 11786, 'hiddleston': 11787, 'centerfold': 11788, 'ilhan': 11789, 'reelect': 11790, 'buddhist': 11791, 'dashcam': 11792, 'childbirth': 11793, 'suave': 11794, 'harshly': 11795, 'talktome': 11796, 'forgo': 11797, 'nook': 11798, 'delightfully': 11799, 'trinity': 11800, 'outback': 11801, 'adhesive': 11802, 'fisa': 11803, 'shaq': 11804, 'severance': 11805, 'constitutionality': 11806, 'bunny': 11807, 'madame': 11808, 'illusions': 11809, 'holly': 11810, 'costly': 11811, 'fx': 11812, 'spirituality': 11813, 'suitable': 11814, 'cinemax': 11815, 'elliott': 11816, 'gucci': 11817, 'wilbur': 11818, 'delirious': 11819, 'kubrick': 11820, 'caption': 11821, 'rippon': 11822, 'territories': 11823, 'censor': 11824, 'prog': 11825, 'councilman': 11826, 'homesick': 11827, 'pickle': 11828, 'unesco': 11829, 'pepsico': 11830, 'nutrients': 11831, 'tombstone': 11832, 'turing': 11833, 'panelists': 11834, 'lebaron': 11835, 'autonomous': 11836, 'erection': 11837, 'bustle': 11838, 'starlet': 11839, 'arrogance': 11840, 'moonves': 11841, 'salvation': 11842, 'delaware': 11843, 'toil': 11844, 'organizer': 11845, 'lepage': 11846, 'projection': 11847, 'insurgents': 11848, 'asterisk': 11849, 'have': 11850, 'mockingjay': 11851, 'toothpaste': 11852, 'dwts': 11853, 'mutation': 11854, 'kneel': 11855, 'douse': 11856, 'retriever': 11857, 'mingle': 11858, 'mockery': 11859, 'fingernail': 11860, 'ample': 11861, 'urinate': 11862, 'douchey': 11863, 'milton': 11864, 'berle': 11865, 'cowards': 11866, 'standup': 11867, 'photojournalist': 11868, 'fictional': 11869, 'precheck': 11870, 'rebrand': 11871, 'daycare': 11872, 'crayola': 11873, 'snowball': 11874, 'innocence': 11875, 'technological': 11876, 'cannibalism': 11877, 'kassig': 11878, 'dominant': 11879, 'playbook': 11880, 'outcome': 11881, 'notable': 11882, 'occasionally': 11883, 'livestock': 11884, 'idiotic': 11885, 'elaborately': 11886, 'worldview': 11887, 'underreported': 11888, 'unaffected': 11889, 'whims': 11890, 'housekeep': 11891, 'notch': 11892, 'stitch': 11893, 'forefront': 11894, 'doze': 11895, 'tedious': 11896, 'ammonia': 11897, 'quinn': 11898, 'predators': 11899, 'tyga': 11900, 'spiral': 11901, 'dictionaries': 11902, 'reimagines': 11903, 'peacock': 11904, 'mistrial': 11905, 'lifespan': 11906, 'syringe': 11907, 'sundance': 11908, 'chloe': 11909, 'uninterrupted': 11910, 'mozzarella': 11911, 'playful': 11912, 'yada': 11913, 'croatian': 11914, 'bodysuit': 11915, 'steele': 11916, 'impend': 11917, 'pigeons': 11918, 'prolong': 11919, 'flatten': 11920, 'milky': 11921, 'grizzle': 11922, 'pa': 11923, 'dimension': 11924, 'krispy': 11925, 'kreme': 11926, 'tallest': 11927, 'iris': 11928, 'inescapable': 11929, 'robe': 11930, 'garth': 11931, 'directorial': 11932, 'volleyball': 11933, 'cha': 11934, 'achievable': 11935, 'shawn': 11936, 'moonlight': 11937, 'dual': 11938, 'whitewash': 11939, 'allegiance': 11940, 'artisanal': 11941, 'techno': 11942, 'scarface': 11943, 'dukakis': 11944, 'freshly': 11945, 'assistance': 11946, 'pittsburgh': 11947, 'gayer': 11948, 'booze': 11949, 'journals': 11950, 'fetuses': 11951, 'effectiveness': 11952, 'hippocratic': 11953, 'rickety': 11954, 'froot': 11955, 'humanize': 11956, 'fellowship': 11957, 'cradle': 11958, 'gresham': 11959, 'cartoonists': 11960, 'peru': 11961, 'incoming': 11962, 'imagery': 11963, 'cushion': 11964, 'scant': 11965, 'hellscape': 11966, 'dynamics': 11967, 'clam': 11968, 'forth': 11969, 'corrugate': 11970, 'overshadow': 11971, 'reviewers': 11972, 'denim': 11973, 'monogamy': 11974, 'mop': 11975, 'guidebook': 11976, 'hopkins': 11977, 'yogurt': 11978, 'rumble': 11979, 'folk': 11980, 'chadwick': 11981, 'rattan': 11982, 'regis': 11983, 'jumbo': 11984, 'transformers': 11985, 'incredibles': 11986, 'bront': 11987, 'juno': 11988, 'chitty': 11989, 'gobble': 11990, 'firefight': 11991, 'seductive': 11992, 'exaggerate': 11993, 'unaccountable': 11994, 'geo': 11995, 'disasters': 11996, 'precocious': 11997, 'mia': 11998, 'proposition': 11999, 'gnar': 12000, 'nana': 12001, 'retweets': 12002, 'breakdowns': 12003, 'courtesy': 12004, 'erick': 12005, 'erickson': 12006, 'gram': 12007, 'thirtysomething': 12008, 'deliciously': 12009, 'branson': 12010, 'marriott': 12011, 'doorways': 12012, 'hallway': 12013, 'grier': 12014, 'lamelo': 12015, 'gunfight': 12016, 'probability': 12017, 'sculpt': 12018, 'entomology': 12019, 'upn': 12020, 'handshake': 12021, 'velocity': 12022, 'clippings': 12023, 'coed': 12024, 'hyper': 12025, 'brutalist': 12026, 'rudolph': 12027, 'windmill': 12028, 'wideawakepatriot': 12029, 'sheep': 12030, 'consultants': 12031, 'oilman': 12032, 'sleater': 12033, 'publick': 12034, 'instance': 12035, 'chemists': 12036, 'nano': 12037, 'snakebite': 12038, 'vespa': 12039, 'smithereens': 12040, 'dinizio': 12041, 'partum': 12042, 'goodfellas': 12043, 'fragment': 12044, 'cocksucker': 12045, 'tsarnaevs': 12046, 'castros': 12047, 'mech': 12048, 'asu': 12049, 'gsv': 12050, 'additives': 12051, 'knowles': 12052, 'poorest': 12053, 'reauthorizes': 12054, 'minotaur': 12055, 'cologned': 12056, 'intervene': 12057, 'paranoia': 12058, 'northwestern': 12059, 'diminish': 12060, 'bawdy': 12061, 'limerick': 12062, 'kitchens': 12063, 'sultan': 12064, 'brunei': 12065, 'elly': 12066, 'underline': 12067, 'psychiatrist': 12068, 'lazier': 12069, 'squadgoals': 12070, 'slogan': 12071, 'darkly': 12072, 'mere': 12073, 'pathetically': 12074, 'cutesy': 12075, 'moose': 12076, 'binks': 12077, 'liveris': 12078, 'gradually': 12079, 'unmarked': 12080, 'narration': 12081, 'aphid': 12082, 'matthews': 12083, 'uw': 12084, 'coconut': 12085, 'ducts': 12086, 'indecency': 12087, 'eh': 12088, 'wray': 12089, 'tailspin': 12090, 'xenomorphs': 12091, 'aspen': 12092, 'fraught': 12093, 'pugs': 12094, 'blab': 12095, 'unorthodox': 12096, 'peake': 12097, 'paramedics': 12098, 'haired': 12099, 'mccourty': 12100, 'bisquick': 12101, 'impossibly': 12102, 'resource': 12103, 'syndicate': 12104, 'sass': 12105, 'popemobile': 12106, 'delightful': 12107, 'astray': 12108, 'uneventful': 12109, 'remixes': 12110, 'boujee': 12111, 'wiesenthal': 12112, 'shabaab': 12113, 'jihadism': 12114, 'gofundme': 12115, 'engrave': 12116, 'nasal': 12117, 'naloxone': 12118, 'epix': 12119, 'szep': 12120, 'utility': 12121, 'anyways': 12122, 'pataky': 12123, 'unbox': 12124, 'riyadh': 12125, 'quill': 12126, 'miele': 12127, 'costas': 12128, 'bumgarner': 12129, 'homestyle': 12130, 'ci': 12131, 'negotiator': 12132, 'femicide': 12133, 'buenos': 12134, 'longhorn': 12135, 'beetle': 12136, 'acorns': 12137, 'regionals': 12138, 'cocksuckers': 12139, 'wednesdays': 12140, 'hipsters': 12141, 'warpaint': 12142, 'wayman': 12143, 'inevitably': 12144, 'gleeful': 12145, 'eyelash': 12146, 'pavlovian': 12147, 'tributes': 12148, 'savion': 12149, 'taro': 12150, 'kono': 12151, 'napoleon': 12152, 'occupant': 12153, 'cockiness': 12154, 'friar': 12155, 'superstars': 12156, 'supermonster': 12157, 'hocus': 12158, 'pocus': 12159, 'eisenhower': 12160, 'smartwatch': 12161, 'aiken': 12162, 'bojangles': 12163, 'molestist': 12164, 'denomination': 12165, 'pupil': 12166, 'orwellian': 12167, 'shedd': 12168, 'sicilian': 12169, 'oafs': 12170, 'ammon': 12171, 'warrantless': 12172, 'whistleblowers': 12173, 'tiananmen': 12174, 'bausch': 12175, 'lomb': 12176, 'webdesign': 12177, 'sookie': 12178, 'lithgow': 12179, 'voicemails': 12180, 'caterpillar': 12181, 'pupal': 12182, 'moth': 12183, 'wildebeest': 12184, 'teem': 12185, 'senatorial': 12186, 'milly': 12187, 'flay': 12188, 'southwestern': 12189, 'inconsolable': 12190, 'beckford': 12191, 'nissin': 12192, 'noodles': 12193, 'transformations': 12194, 'swindle': 12195, 'dorian': 12196, 'uno': 12197, 'annotations': 12198, 'skitter': 12199, 'huntley': 12200, 'ize': 12201, 'industries': 12202, 'vasectomies': 12203, 'romans': 12204, 'architects': 12205, 'efficiently': 12206, 'blanchard': 12207, 'geun': 12208, 'hye': 12209, 'pallbearers': 12210, 'lumberjack': 12211, 'porky': 12212, 'hubby': 12213, 'genetics': 12214, 'emphatically': 12215, 'medusa': 12216, 'nebula': 12217, 'prettier': 12218, 'namesake': 12219, 'devalue': 12220, 'schmooze': 12221, 'jacquie': 12222, 'mcnish': 12223, 'silcoff': 12224, 'flores': 12225, 'churchgoing': 12226, 'kam': 12227, 'sillier': 12228, 'filth': 12229, 'normalize': 12230, 'fischer': 12231, 'pam': 12232, 'gimme': 12233, 'spec': 12234, 'usb': 12235, 'perpetrators': 12236, 'balsamic': 12237, 'ankara': 12238, 'mascara': 12239, 'torpedo': 12240, 'mythbusters': 12241, 'slaw': 12242, 'uneaten': 12243, 'trance': 12244, 'composers': 12245, 'atony': 12246, 'basil': 12247, 'rwanda': 12248, 'munich': 12249, 'cruiser': 12250, 'legacies': 12251, 'semiotics': 12252, 'semiotism': 12253, 'tarsiers': 12254, 'primate': 12255, 'glider': 12256, 'kappa': 12257, 'graduations': 12258, 'friggin': 12259, 'stageplay': 12260, 'unconvincingly': 12261, 'pogge': 12262, 'gout': 12263, 'tsoureki': 12264, 'humiliations': 12265, 'swiftly': 12266, 'pentagram': 12267, 'cremation': 12268, 'homoji': 12269, 'shorthand': 12270, 'psilocybin': 12271, 'mindlessly': 12272, 'lemming': 12273, 'aspect': 12274, 'braless': 12275, 'mermaid': 12276, 'oracle': 12277, 'raindrop': 12278, 'taft': 12279, 'ambler': 12280, 'spatula': 12281, 'processor': 12282, 'superfan': 12283, 'gallop': 12284, 'remington': 12285, 'interreligious': 12286, 'egidio': 12287, 'sorkin': 12288, 'omaha': 12289, 'retribution': 12290, 'tit': 12291, 'quiche': 12292, 'vilanch': 12293, 'sodomize': 12294, 'nitrogen': 12295, 'infrequently': 12296, 'pufferfish': 12297, 'friendless': 12298, 'kerrigan': 12299, 'maytag': 12300, 'balk': 12301, 'hertz': 12302, 'homicides': 12303, 'schwartz': 12304, 'rubik': 12305, 'preschooler': 12306, 'suppository': 12307, 'nastiness': 12308, 'superstores': 12309, 'megamalls': 12310, 'lieberman': 12311, 'overlords': 12312, 'grimly': 12313, 'waitlist': 12314, 'lanes': 12315, 'cyclists': 12316, 'norfolk': 12317, 'mugabe': 12318, 'inversions': 12319, 'drugmakers': 12320, 'potion': 12321, 'hp': 12322, 'exhibitionist': 12323, 'shutdowns': 12324, 'lg': 12325, 'espero': 12326, 'unwieldy': 12327, 'hue': 12328, 'emp': 12329, 'cleave': 12330, 'palate': 12331, 'aquatic': 12332, 'trillionaire': 12333, 'anaconda': 12334, 'claymation': 12335, 'bewigged': 12336, 'shoutout': 12337, 'stimpy': 12338, 'sia': 12339, 'grammatical': 12340, 'ozzie': 12341, 'guillen': 12342, 'nightstand': 12343, 'museveni': 12344, 'avenatti': 12345, 'whisker': 12346, 'zakaria': 12347, 'knievel': 12348, 'underpetted': 12349, 'goner': 12350, 'vertical': 12351, 'meeker': 12352, 'desertion': 12353, 'afeni': 12354, 'shakur': 12355, 'deficient': 12356, 'krauthammer': 12357, 'prosperous': 12358, 'boofing': 12359, 'waldorf': 12360, 'zandt': 12361, 'macaskill': 12362, 'stormi': 12363, 'affluenza': 12364, 'tonya': 12365, 'telekinetic': 12366, 'gestation': 12367, 'ingenious': 12368, 'populations': 12369, 'tooba': 12370, 'marwat': 12371, 'signarama': 12372, 'sportswear': 12373, 'decency': 12374, 'raoul': 12375, 'wallenberg': 12376, 'quadruplets': 12377, 'shanghai': 12378, 'scholar': 12379, 'spokesmodels': 12380, 'examiner': 12381, 'amonderez': 12382, 'chauvinist': 12383, 'decompression': 12384, 'zoroastrianism': 12385, 'axact': 12386, 'marshmallows': 12387, 'utmost': 12388, 'disclosures': 12389, 'rebound': 12390, 'leaky': 12391, 'potemkin': 12392, 'villages': 12393, 'galen': 12394, 'sop': 12395, 'renal': 12396, 'fallible': 12397, 'deficiency': 12398, 'almighty': 12399, 'sentimental': 12400, 'buckley': 12401, 'dubose': 12402, 'critter': 12403, 'affordability': 12404, 'attainment': 12405, 'babble': 12406, 'emts': 12407, 'accelerator': 12408, 'overstock': 12409, 'ashore': 12410, 'disaffect': 12411, 'gravitate': 12412, 'nazism': 12413, 'landfall': 12414, 'conceptual': 12415, 'canby': 12416, 'overlong': 12417, 'piracy': 12418, 'pipelines': 12419, 'rework': 12420, 'amplify': 12421, 'recessive': 12422, 'thirteenth': 12423, 'tragedies': 12424, 'milla': 12425, 'jovovich': 12426, 'marlee': 12427, 'matlin': 12428, 'honorary': 12429, 'whitfield': 12430, 'resound': 12431, 'vaulter': 12432, 'chronically': 12433, 'feral': 12434, 'printout': 12435, 'stigmas': 12436, 'plotholes': 12437, 'wonk': 12438, 'shtick': 12439, 'onslaught': 12440, 'rommel': 12441, 'hummel': 12442, 'flabbergast': 12443, 'uncommon': 12444, 'sweatpants': 12445, 'lanthanum': 12446, 'pythons': 12447, 'helens': 12448, 'trustworthy': 12449, 'defiantly': 12450, 'scone': 12451, 'carpe': 12452, 'diem': 12453, 'aneurysms': 12454, 'halfpipe': 12455, 'micro': 12456, 'circa': 12457, 'gayby': 12458, 'theodore': 12459, 'scavenger': 12460, 'fios': 12461, 'fttp': 12462, 'cronyist': 12463, 'dali': 12464, 'gobbler': 12465, 'parentheses': 12466, 'yoke': 12467, 'franz': 12468, 'ferdinand': 12469, 'gavrilo': 12470, 'princip': 12471, 'lipinski': 12472, 'weir': 12473, 'gorillagram': 12474, 'khalifa': 12475, 'fetty': 12476, 'wap': 12477, 'omi': 12478, 'grrrl': 12479, 'hsn': 12480, 'googlers': 12481, 'pasty': 12482, 'macho': 12483, 'bernin': 12484, 'certainty': 12485, 'jihadists': 12486, 'woodcrafts': 12487, 'salaries': 12488, 'doe': 12489, 'punishments': 12490, 'asp': 12491, 'dumbasses': 12492, 'tot': 12493, 'feelers': 12494, 'apeshit': 12495, 'giver': 12496, 'ag': 12497, 'copycats': 12498, 'rebuff': 12499, 'aerial': 12500, 'feverishly': 12501, 'mirena': 12502, 'intrauterine': 12503, 'preparedness': 12504, 'undies': 12505, 'gillian': 12506, 'jacobs': 12507, 'helmut': 12508, 'uv': 12509, 'radiation': 12510, 'collegiate': 12511, 'caliphate': 12512, 'theall': 12513, 'palahniuk': 12514, 'moira': 12515, 'mactaggert': 12516, 'myung': 12517, 'oblige': 12518, 'flintoff': 12519, 'sonorous': 12520, 'modulate': 12521, 'obscenities': 12522, 'yin': 12523, 'inroads': 12524, 'grandbaby': 12525, 'aphasia': 12526, 'fullness': 12527, 'bleak': 12528, 'trickortreatin': 12529, 'porcelain': 12530, 'dinnerware': 12531, 'superbly': 12532, 'decathlon': 12533, 'bowlmate': 12534, 'thinkers': 12535, 'surreality': 12536, 'marrow': 12537, 'caylee': 12538, 'snapcash': 12539, 'seediest': 12540, 'pandas': 12541, 'joss': 12542, 'whedon': 12543, 'herbs': 12544, 'watercolor': 12545, 'counterterrorism': 12546, 'oxiclean': 12547, 'sympathizer': 12548, 'manchin': 12549, 'koreas': 12550, 'praia': 12551, 'iracema': 12552, 'overhaul': 12553, 'waitlists': 12554, 'akon': 12555, 'thugs': 12556, 'tanner': 12557, 'fictitious': 12558, 'labelle': 12559, 'inbreeding': 12560, 'bumbum': 12561, 'wily': 12562, 'alps': 12563, 'specificity': 12564, 'liege': 12565, 'tirelessly': 12566, 'ethanol': 12567, 'cujo': 12568, 'mohammad': 12569, 'munsters': 12570, 'kiper': 12571, 'spreadsheet': 12572, 'zissu': 12573, 'archery': 12574, 'voiceless': 12575, 'naral': 12576, 'catcher': 12577, 'rye': 12578, 'yoda': 12579, 'provocation': 12580, 'meds': 12581, 'inactivity': 12582, 'greenlit': 12583, 'goodnight': 12584, 'duvall': 12585, 'pedicure': 12586, 'tubs': 12587, 'unease': 12588, 'pudgy': 12589, 'rosy': 12590, 'cheek': 12591, 'nyse': 12592, 'reinforcin': 12593, 'dodger': 12594, 'flapper': 12595, 'lucidity': 12596, 'jesmyn': 12597, 'reprehensible': 12598, 'cosplay': 12599, 'psychiatry': 12600, 'terminate': 12601, 'surcharge': 12602, 'corridors': 12603, 'powerlessness': 12604, 'charmin': 12605, 'disposable': 12606, 'extravagant': 12607, 'constellations': 12608, 'neurosurgeon': 12609, 'andes': 12610, 'toastables': 12611, 'microwavable': 12612, 'pommel': 12613, 'voltaggio': 12614, 'drawbridge': 12615, 'rotary': 12616, 'survivalist': 12617, 'kinko': 12618, 'switcheroo': 12619, 'wimping': 12620, 'quench': 12621, 'architectural': 12622, 'byblos': 12623, 'brim': 12624, 'jeffery': 12625, 'flasher': 12626, 'cornel': 12627, 'fanatically': 12628, 'pegg': 12629, 'masturbatory': 12630, 'climax': 12631, 'codfather': 12632, 'meritocracy': 12633, 'blimp': 12634, 'cheesy': 12635, 'deere': 12636, 'sidecars': 12637, 'opec': 12638, 'filmgoers': 12639, 'dccc': 12640, 'shoebox': 12641, 'erykah': 12642, 'badu': 12643, 'chicagoans': 12644, 'robocop': 12645, 'relativity': 12646, 'cornrow': 12647, 'oft': 12648, 'unceremoniously': 12649, 'jyothi': 12650, 'rao': 12651, 'jeffreyton': 12652, 'dishonorably': 12653, 'navigation': 12654, 'cartridges': 12655, 'dunbar': 12656, 'newsletter': 12657, 'minimums': 12658, 'burnouts': 12659, 'congressmembers': 12660, 'feasible': 12661, 'snowflakes': 12662, 'wheats': 12663, 'retweet': 12664, 'embroider': 12665, 'disasty': 12666, 'nia': 12667, 'nakba': 12668, 'intertwine': 12669, 'rapid': 12670, 'emporia': 12671, 'preclude': 12672, 'overreaction': 12673, 'afterburners': 12674, 'packers': 12675, 'neurons': 12676, 'imperioli': 12677, 'moyers': 12678, 'dewey': 12679, 'decimal': 12680, 'categorize': 12681, 'belushi': 12682, 'toot': 12683, 'molasses': 12684, 'runaways': 12685, 'eulogize': 12686, 'spazio': 12687, 'sofas': 12688, 'knowshon': 12689, 'moreno': 12690, 'retailer': 12691, 'colossus': 12692, 'cooperative': 12693, 'manifesto': 12694, 'kellie': 12695, 'pickler': 12696, 'coulier': 12697, 'cranky': 12698, 'brightly': 12699, 'udonis': 12700, 'haslem': 12701, 'defunded': 12702, 'stalemate': 12703, 'acquisition': 12704, 'stagnant': 12705, 'boulders': 12706, 'redenbacher': 12707, 'realness': 12708, 'puppeteer': 12709, 'rinse': 12710, 'dobby': 12711, 'calypso': 12712, 'serf': 12713, 'subjugation': 12714, 'unlawful': 12715, 'gethard': 12716, 'cecily': 12717, 'underpaved': 12718, 'coolio': 12719, 'isaac': 12720, 'hamlet': 12721, 'transcontinental': 12722, 'fests': 12723, 'tae': 12724, 'kwon': 12725, 'mismatch': 12726, 'cryptographers': 12727, 'frpx': 12728, 'oc': 12729, 'dn': 12730, 'burrow': 12731, 'zippori': 12732, 'selig': 12733, 'dms': 12734, 'fearmongers': 12735, 'warmongers': 12736, 'monger': 12737, 'asiana': 12738, 'enlighten': 12739, 'misjudge': 12740, 'sahm': 12741, 'efficient': 12742, 'nastier': 12743, 'liv': 12744, 'orkin': 12745, 'correctness': 12746, 'weasels': 12747, 'sykes': 12748, 'arthritis': 12749, 'brisket': 12750, 'enclosure': 12751, 'naderite': 12752, 'podiatrists': 12753, 'caw': 12754, 'gta': 12755, 'sicario': 12756, 'villeneuve': 12757, 'selfridge': 12758, 'gratuitous': 12759, 'festivities': 12760, 'osm': 12761, 'couche': 12762, 'tard': 12763, 'vir': 12764, 'classique': 12765, 'buss': 12766, 'ecosystems': 12767, 'prophesy': 12768, 'homaro': 12769, 'cantu': 12770, 'logically': 12771, 'frontline': 12772, 'gadget': 12773, 'pageviews': 12774, 'chlorine': 12775, 'blindly': 12776, 'chad': 12777, 'plural': 12778, 'perdue': 12779, 'smite': 12780, 'ruffle': 12781, 'stint': 12782, 'cor': 12783, 'hierarchy': 12784, 'braid': 12785, 'corbyn': 12786, 'junger': 12787, 'korengal': 12788, 'telemarketers': 12789, 'breakups': 12790, 'cardell': 12791, 'practical': 12792, 'khizr': 12793, 'riley': 12794, 'caterina': 12795, 'scorsone': 12796, 'adeyemi': 12797, 'kowtow': 12798, 'incompetents': 12799, 'hypnotist': 12800, 'gimmick': 12801, 'hypnotists': 12802, 'exhaustive': 12803, 'internally': 12804, 'composer': 12805, 'licht': 12806, 'middlebury': 12807, 'rezone': 12808, 'ado': 12809, 'paragraph': 12810, 'crystals': 12811, 'elias': 12812, 'koteas': 12813, 'olinsky': 12814, 'tantalizingly': 12815, 'sedative': 12816, 'winneshiek': 12817, 'wookiees': 12818, 'growl': 12819, 'gator': 12820, 'freakin': 12821, 'officemax': 12822, 'redmayne': 12823, 'gooey': 12824, 'catalog': 12825, 'shep': 12826, 'postmistress': 12827, 'delhi': 12828, 'aztecs': 12829, 'vi': 12830, 'holiness': 12831, 'regift': 12832, 'brennan': 12833, 'voluntary': 12834, 'socially': 12835, 'katwe': 12836, 'prototype': 12837, 'yayoi': 12838, 'kusama': 12839, 'statistical': 12840, 'ciro': 12841, 'guerra': 12842, 'aikman': 12843, 'aboveground': 12844, 'palpable': 12845, 'intentionally': 12846, 'neurosis': 12847, 'pneumonia': 12848, 'nixonization': 12849, 'handmaids': 12850, 'obscurity': 12851, 'dividends': 12852, 'whimsically': 12853, 'plank': 12854, 'coyote': 12855, 'grandilomentitudinous': 12856, 'warsaw': 12857, 'reassurances': 12858, 'atrocity': 12859, 'brevity': 12860, 'intersectional': 12861, 'weakness': 12862, 'augment': 12863, 'inquire': 12864, 'marqkria': 12865, 'depletion': 12866, 'counterpart': 12867, 'panini': 12868, 'dyer': 12869, 'zoetrope': 12870, 'solitute': 12871, 'armenian': 12872, 'aww': 12873, 'shaw': 12874, 'jakrapong': 12875, 'kongmalai': 12876, 'mammograms': 12877, 'uzo': 12878, 'aduba': 12879, 'pederast': 12880, 'letterbox': 12881, 'debasement': 12882, 'typhoon': 12883, 'meranti': 12884, 'uphill': 12885, 'capitalist': 12886, 'credentials': 12887, 'enforcer': 12888, 'honker': 12889, 'ayn': 12890, 'skedaddle': 12891, 'paste': 12892, 'vixen': 12893, 'skyeditor': 12894, 'rockette': 12895, 'streamer': 12896, 'futon': 12897, 'measly': 12898, 'trumpbacktoschooltips': 12899, 'handiwork': 12900, 'napa': 12901, 'unreported': 12902, 'tch': 12903, 'homophobes': 12904, 'tactic': 12905, 'tacit': 12906, 'assemblage': 12907, 'marcel': 12908, 'duchamp': 12909, 'ah': 12910, 'knopfler': 12911, 'steadily': 12912, 'whacker': 12913, 'fetid': 12914, 'dimon': 12915, 'relentless': 12916, 'suburbs': 12917, 'segways': 12918, 'snicker': 12919, 'leaflet': 12920, 'philadelphiatheatreco': 12921, 'opinionated': 12922, 'unpresidential': 12923, 'roar': 12924, 'bowery': 12925, 'incheon': 12926, 'daydream': 12927, 'invader': 12928, 'rauner': 12929, 'reda': 12930, 'kateb': 12931, 'hippocrates': 12932, 'gibbs': 12933, 'flute': 12934, 'aplogize': 12935, 'reposted': 12936, 'starwarschristmascarols': 12937, 'biscotti': 12938, 'kirsch': 12939, 'cherries': 12940, 'influenza': 12941, 'unconventional': 12942, 'renee': 12943, 'silverstein': 12944, 'lineman': 12945, 'penelope': 12946, 'middlemen': 12947, 'itt': 12948, 'suspenders': 12949, 'quadriplegic': 12950, 'unguarded': 12951, 'swerve': 12952, 'thermo': 12953, 'pornographer': 12954, 'leniency': 12955, 'quinones': 12956, 'beneficiary': 12957, 'substantive': 12958, 'envy': 12959, 'limestone': 12960, 'roxane': 12961, 'divol': 12962, 'svp': 12963, 'symantec': 12964, 'extralegal': 12965, 'apparatus': 12966, 'monte': 12967, 'carlo': 12968, 'racecar': 12969, 'succinct': 12970, 'chronology': 12971, 'seller': 12972, 'setlist': 12973, 'townshend': 12974, 'oahu': 12975, 'trifecta': 12976, 'lamontagne': 12977, 'unavoidable': 12978, 'bushnell': 12979, 'buzzwords': 12980, 'mikhail': 12981, 'gorbachev': 12982, 'breaths': 12983, 'tyka': 12984, 'chile': 12985, 'scrappy': 12986, 'pendulum': 12987, 'blissful': 12988, 'berkus': 12989, 'jeremiah': 12990, 'jostens': 12991, 'bewilder': 12992, 'sanderses': 12993, 'decapitations': 12994, 'broadly': 12995, 'cusp': 12996, 'giveaway': 12997, 'invert': 12998, 'ace': 12999, 'capote': 13000, 'platforms': 13001, 'screwball': 13002, 'nabors': 13003, 'javelin': 13004, 'runoff': 13005, 'houthi': 13006, 'profusely': 13007, 'touchy': 13008, 'estrange': 13009, 'adieu': 13010, 'bechdel': 13011, 'liu': 13012, 'xiaobo': 13013, 'phan': 13014, 'bestie': 13015, 'banister': 13016, 'asymmetrical': 13017, 'cannibals': 13018, 'bakers': 13019, 'theorists': 13020, 'nummier': 13021, 'neurotransmitters': 13022, 'beekeepers': 13023, 'demons': 13024, 'nitty': 13025, 'cinco': 13026, 'stifle': 13027, 'unsold': 13028, 'primates': 13029, 'mckinley': 13030, 'interpol': 13031, 'yolk': 13032, 'grapefruit': 13033, 'lebanese': 13034, 'calais': 13035, 'voldemort': 13036, 'unspeakably': 13037, 'zoologist': 13038, 'tranquilize': 13039, 'dis': 13040, 'jubilee': 13041, 'subprime': 13042, 'himalayan': 13043, 'inexperience': 13044, 'appointees': 13045, 'shantytown': 13046, 'arcane': 13047, 'imperil': 13048, 'cursive': 13049, 'angelique': 13050, 'kerber': 13051, 'backpedal': 13052, 'eldest': 13053, 'brownstone': 13054, 'bosnian': 13055, 'ronco': 13056, 'exposer': 13057, 'mockumentary': 13058, 'counties': 13059, 'angolan': 13060, 'excedrin': 13061, 'painless': 13062, 'liven': 13063, 'charley': 13064, 'murderous': 13065, 'dictators': 13066, 'attendants': 13067, 'pap': 13068, 'reignite': 13069, 'monologues': 13070, 'tablet': 13071, 'inhale': 13072, 'retrievers': 13073, 'masterclass': 13074, 'eucalyptus': 13075, 'facetime': 13076, 'bindi': 13077, 'guzman': 13078, 'legions': 13079, 'tentative': 13080, 'rafter': 13081, 'stoplights': 13082, 'soviet': 13083, 'spooktacular': 13084, 'mosel': 13085, 'riesling': 13086, 'warhead': 13087, 'sleepers': 13088, 'slovakia': 13089, 'canyons': 13090, 'hazardous': 13091, 'amandla': 13092, 'stenberg': 13093, 'tote': 13094, 'gobi': 13095, 'agnostic': 13096, 'sneeze': 13097, 'debatable': 13098, 'morley': 13099, 'stopwatch': 13100, 'lewd': 13101, 'reintegration': 13102, 'supervision': 13103, 'doggone': 13104, 'nasim': 13105, 'nasr': 13106, 'zaeefeh': 13107, 'wretchedness': 13108, 'shadi': 13109, 'gagprojects': 13110, 'adelaide': 13111, 'mohawk': 13112, 'riotous': 13113, 'nutella': 13114, 'lubricant': 13115, 'bethenny': 13116, 'frankel': 13117, 'passover': 13118, 'hetero': 13119, 'pang': 13120, 'junot': 13121, 'hunch': 13122, 'blemish': 13123, 'spotless': 13124, 'dismantle': 13125, 'bedford': 13126, 'ku': 13127, 'klux': 13128, 'klan': 13129, 'unbearably': 13130, 'cooperation': 13131, 'encore': 13132, 'deficiencies': 13133, 'bizkit': 13134, 'asthma': 13135, 'moviegoers': 13136, 'cannavale': 13137, 'spaceport': 13138, 'mink': 13139, 'zeke': 13140, 'untitled': 13141, 'unmastered': 13142, 'springer': 13143, 'zestitos': 13144, 'cleanup': 13145, 'unrepentant': 13146, 'recommendations': 13147, 'cajun': 13148, 'gpa': 13149, 'realism': 13150, 'vernon': 13151, 'quixote': 13152, 'violinist': 13153, 'nique': 13154, 'qualms': 13155, 'uninhibited': 13156, 'disburse': 13157, 'podcaster': 13158, 'circumstantial': 13159, 'overpass': 13160, 'vax': 13161, 'equinox': 13162, 'fundamentals': 13163, 'amazonian': 13164, 'bulldozer': 13165, 'brandish': 13166, 'dese': 13167, 'bombinks': 13168, 'disgustipating': 13169, 'vacate': 13170, 'pastoral': 13171, 'cruces': 13172, 'dilute': 13173, 'scientifically': 13174, 'challengers': 13175, 'purport': 13176, 'kaia': 13177, 'undetectable': 13178, 'doin': 13179, 'maasai': 13180, 'looseyia': 13181, 'farmworker': 13182, 'cone': 13183, 'leech': 13184, 'batali': 13185, 'unhrc': 13186, 'yearlong': 13187, 'mucus': 13188, 'ulcers': 13189, 'portraiture': 13190, 'trappings': 13191, 'pti': 13192, 'lager': 13193, 'tavern': 13194, 'herman': 13195, 'cornnuts': 13196, 'stammer': 13197, 'nutsarito': 13198, 'juke': 13199, 'horseconnect': 13200, 'ionosphere': 13201, 'sarandon': 13202, 'tattletale': 13203, 'mpaa': 13204, 'caffeine': 13205, 'ghostwriter': 13206, 'burkinis': 13207, 'midwife': 13208, 'gettin': 13209, 'moines': 13210, 'perate': 13211, 'arquette': 13212, 'ernie': 13213, 'dixieland': 13214, 'evict': 13215, 'narcolepsy': 13216, 'innovate': 13217, 'caucasians': 13218, 'bangers': 13219, 'synagogues': 13220, 'congregants': 13221, 'spermicide': 13222, 'superior': 13223, 'radials': 13224, 'dmc': 13225, 'tempurapedic': 13226, 'mattresses': 13227, 'haitians': 13228, 'taskforce': 13229, 'enterprising': 13230, 'caird': 13231, 'refill': 13232, 'br': 13233, 'proficient': 13234, 'tenison': 13235, 'maman': 13236, 'streamline': 13237, 'smolder': 13238, 'banyan': 13239, 'transgressions': 13240, 'behrendt': 13241, 'dyson': 13242, 'vestigial': 13243, 'jolson': 13244, 'punt': 13245, 'pronged': 13246, 'newark': 13247, 'instagrammer': 13248, 'willams': 13249, 'festive': 13250, 'habsburg': 13251, 'duca': 13252, 'arse': 13253, 'tiara': 13254, 'workbench': 13255, 'nonstarter': 13256, 'bootleg': 13257, 'philosopher': 13258, 'juicero': 13259, 'juicer': 13260, 'shredyourex': 13261, 'dishware': 13262, 'greenwald': 13263, 'multipacks': 13264, 'iffy': 13265, 'faulty': 13266, 'parkway': 13267, 'waukegan': 13268, 'cafepress': 13269, 'improperly': 13270, 'librarian': 13271, 'humbly': 13272, 'randos': 13273, 'cylindrical': 13274, 'techview': 13275, 'linus': 13276, 'torvalds': 13277, 'linux': 13278, 'sidebar': 13279, 'competence': 13280, 'sanderson': 13281, 'calle': 13282, 'duration': 13283, 'modernity': 13284, 'moroccan': 13285, 'nspw': 13286, 'sclerosis': 13287, 'burgundy': 13288, 'pantone': 13289, 'starstruck': 13290, 'smatter': 13291, 'stewman': 13292, 'phife': 13293, 'dawg': 13294, 'jung': 13295, 'thunderstorm': 13296, 'legoland': 13297, 'ritter': 13298, 'whirlwind': 13299, 'weakling': 13300, 'delarge': 13301, 'droogs': 13302, 'amidst': 13303, 'extremism': 13304, 'skiers': 13305, 'speechwriting': 13306, 'entomologists': 13307, 'clump': 13308, 'osteoporosis': 13309, 'nited': 13310, 'tes': 13311, 'toughen': 13312, 'umlauts': 13313, 'sens': 13314, 'oddsmakers': 13315, 'moody': 13316, 'lovell': 13317, 'portia': 13318, 'frieze': 13319, 'functionless': 13320, 'translucent': 13321, 'confederacy': 13322, 'pitzer': 13323, 'alleviate': 13324, 'judi': 13325, 'dench': 13326, 'pint': 13327, 'hinky': 13328, 'fka': 13329, 'twig': 13330, 'marmont': 13331, 'sleekest': 13332, 'bathe': 13333, 'derby': 13334, 'overboard': 13335, 'lourea': 13336, 'macrowave': 13337, 'portend': 13338, 'koko': 13339, 'dieselgate': 13340, 'gunshots': 13341, 'pullups': 13342, 'oxfam': 13343, 'epidemics': 13344, 'showbiz': 13345, 'compendium': 13346, 'norad': 13347, 'femstat': 13348, 'rossi': 13349, 'spumanti': 13350, 'fluidity': 13351, 'kacy': 13352, 'rapaport': 13353, 'deavere': 13354, 'peshawar': 13355, 'absent': 13356, 'odyssey': 13357, 'garment': 13358, 'jos': 13359, 'andr': 13360, 'tempt': 13361, 'maharishi': 13362, 'rupee': 13363, 'filmmaking': 13364, 'superficiality': 13365, 'buchanan': 13366, 'errands': 13367, 'sudoku': 13368, 'contusions': 13369, 'althea': 13370, 'domination': 13371, 'marv': 13372, 'babylon': 13373, 'architecture': 13374, 'stormtroopers': 13375, 'cowell': 13376, 'incumbency': 13377, 'maternal': 13378, 'samaritan': 13379, 'unpredictable': 13380, 'dirtydenier': 13381, 'noaa': 13382, 'introspect': 13383, 'pointy': 13384, 'antismoking': 13385, 'chromat': 13386, 'twos': 13387, 'docents': 13388, 'libertarians': 13389, 'biochemical': 13390, 'stressful': 13391, 'granger': 13392, 'loch': 13393, 'terrors': 13394, 'metallurgists': 13395, 'polonium': 13396, 'pushy': 13397, 'hermit': 13398, 'pansexual': 13399, 'moonwalks': 13400, 'samuel': 13401, 'pilsner': 13402, 'ot': 13403, 'buttercup': 13404, 'backdrop': 13405, 'mitty': 13406, 'uncashed': 13407, 'quadriscuits': 13408, 'doorknob': 13409, 'mcenroe': 13410, 'nea': 13411, 'claes': 13412, 'oldenburg': 13413, 'enjoyable': 13414, 'forecaster': 13415, 'remastered': 13416, 'shybot': 13417, 'handy': 13418, 'knifepoint': 13419, 'alvah': 13420, 'roebuck': 13421, 'amaranth': 13422, 'hick': 13423, 'nobodies': 13424, 'deduce': 13425, 'narcan': 13426, 'biplanes': 13427, 'falter': 13428, 'masterful': 13429, 'andme': 13430, 'klugman': 13431, 'tania': 13432, 'bruguera': 13433, 'thinnest': 13434, 'ketogenic': 13435, 'fineo': 13436, 'overshoot': 13437, 'devout': 13438, 'csa': 13439, 'gchats': 13440, 'marcus': 13441, 'mariota': 13442, 'crowdfund': 13443, 'gineering': 13444, 'gloved': 13445, 'catfishing': 13446, 'incidence': 13447, 'stargate': 13448, 'sg': 13449, 'machado': 13450, 'polk': 13451, 'spire': 13452, 'sympathize': 13453, 'pettiness': 13454, 'deception': 13455, 'medallist': 13456, 'violation': 13457, 'duckling': 13458, 'colt': 13459, 'umpqua': 13460, 'misdirection': 13461, 'incivility': 13462, 'headfirst': 13463, 'nawal': 13464, 'teleworks': 13465, 'gregorios': 13466, 'yohanna': 13467, 'ibrahim': 13468, 'boulos': 13469, 'yazigi': 13470, 'tribeca': 13471, 'cartels': 13472, 'sweeney': 13473, 'lydia': 13474, 'polgreen': 13475, 'hagar': 13476, 'bog': 13477, 'eternity': 13478, 'udpate': 13479, 'cheadle': 13480, 'mathis': 13481, 'mancini': 13482, 'anson': 13483, 'rmh': 13484, 'roadblock': 13485, 'demitri': 13486, 'anchorwoman': 13487, 'ethnicity': 13488, 'theoretically': 13489, 'hideo': 13490, 'kojima': 13491, 'cutscene': 13492, 'speedboat': 13493, 'outburst': 13494, 'apparel': 13495, 'demonically': 13496, 'underdraft': 13497, 'neapolitan': 13498, 'reeva': 13499, 'steenkamp': 13500, 'directtv': 13501, 'cloney': 13502, 'pheromone': 13503, 'secretion': 13504, 'introduction': 13505, 'jj': 13506, 'ragsdale': 13507, 'homan': 13508, 'deepwater': 13509, 'cicilline': 13510, 'polka': 13511, 'loeffelmacher': 13512, 'nachos': 13513, 'fashionistas': 13514, 'firefox': 13515, 'sociocultural': 13516, 'entendre': 13517, 'stardew': 13518, 'tbfoodsllc': 13519, 'philipps': 13520, 'setbacks': 13521, 'dumptruck': 13522, 'cavalcade': 13523, 'salvadoran': 13524, 'semite': 13525, 'woodstock': 13526, 'kingpins': 13527, 'pantomime': 13528, 'hominid': 13529, 'unambitious': 13530, 'myers': 13531, 'servicepeople': 13532, 'cubicle': 13533, 'recidivism': 13534, 'nelly': 13535, 'breezy': 13536, 'poe': 13537, 'acne': 13538, 'dizziness': 13539, 'nausea': 13540, 'loews': 13541, 'versace': 13542, 'ceremonies': 13543, 'dax': 13544, 'nuestra': 13545, 'palabra': 13546, 'untangle': 13547, 'midas': 13548, 'scowl': 13549, 'maduro': 13550, 'methodist': 13551, 'wamu': 13552, 'chaplev': 13553, 'mildfires': 13554, 'amble': 13555, 'rossini': 13556, 'caramoor': 13557, 'ros': 13558, 'holtzclaw': 13559, 'lopsided': 13560, 'bronchitis': 13561, 'potties': 13562, 'stinky': 13563, 'zach': 13564, 'braff': 13565, 'milano': 13566, 'remover': 13567, 'unsliced': 13568, 'speakeasy': 13569, 'laboratory': 13570, 'crichton': 13571, 'northam': 13572, 'pellets': 13573, 'firstborn': 13574, 'apprehend': 13575, 'duller': 13576, 'sri': 13577, 'srinivasan': 13578, 'rossdale': 13579, 'angelic': 13580, 'panetta': 13581, 'supervillain': 13582, 'sherman': 13583, 'alexie': 13584, 'compatriots': 13585, 'shortz': 13586, 'awestruck': 13587, 'quagmire': 13588, 'escalator': 13589, 'loyalties': 13590, 'airtime': 13591, 'shitfaced': 13592, 'olean': 13593, 'stoneheart': 13594, 'antifa': 13595, 'oldies': 13596, 'goodies': 13597, 'triumphal': 13598, 'muhammed': 13599, 'ergonomic': 13600, 'workouts': 13601, 'chide': 13602, 'labute': 13603, 'frances': 13604, 'cobain': 13605, 'prehab': 13606, 'optimists': 13607, 'snuggle': 13608, 'barrack': 13609, 'evans': 13610, 'dru': 13611, 'reinhart': 13612, 'insensitive': 13613, 'exquisitely': 13614, 'coif': 13615, 'urinary': 13616, 'noel': 13617, 'volley': 13618, 'niall': 13619, 'horan': 13620, 'ginuwine': 13621, 'alternativefacts': 13622, 'pettyjohn': 13623, 'nickelodeon': 13624, 'katee': 13625, 'sackhoff': 13626, 'hy': 13627, 'genic': 13628, 'apportionment': 13629, 'gladness': 13630, 'participation': 13631, 'evacuation': 13632, 'wondersplint': 13633, 'kondo': 13634, 'untidy': 13635, 'wearhouse': 13636, 'trousers': 13637, 'topher': 13638, 'hyperbole': 13639, 'kickline': 13640, 'jawa': 13641, 'sf': 13642, 'tomm': 13643, 'lasorda': 13644, 'kidz': 13645, 'bop': 13646, 'nisota': 13647, 'piazza': 13648, 'cavalleria': 13649, 'rusticana': 13650, 'pagliacci': 13651, 'tumbleweed': 13652, 'pubes': 13653, 'desolate': 13654, 'ob': 13655, 'gyn': 13656, 'template': 13657, 'platt': 13658, 'competencies': 13659, 'headband': 13660, 'ameringer': 13661, 'mcenery': 13662, 'yohe': 13663, 'recede': 13664, 'bandai': 13665, 'incomprehensible': 13666, 'automakers': 13667, 'mund': 13668, 'cancun': 13669, 'keychain': 13670, 'marsa': 13671, 'heifer': 13672, 'bbqs': 13673, 'miner': 13674, 'fairies': 13675, 'flea': 13676, 'unidentifiable': 13677, 'redhead': 13678, 'brokeback': 13679, 'braun': 13680, 'jigglypuff': 13681, 'morgue': 13682, 'humanitarians': 13683, 'ashton': 13684, 'kutcher': 13685, 'joanna': 13686, 'skydivers': 13687, 'output': 13688, 'rashida': 13689, 'rewind': 13690, 'texters': 13691, 'backtrack': 13692, 'numeric': 13693, 'integers': 13694, 'nestl': 13695, 'aroldis': 13696, 'imelda': 13697, 'ultrachurch': 13698, 'steph': 13699, 'captors': 13700, 'homos': 13701, 'optioned': 13702, 'hallow': 13703, 'roadtrip': 13704, 'ulta': 13705, 'buttery': 13706, 'proctor': 13707, 'signifier': 13708, 'kamikaze': 13709, 'tryout': 13710, 'handel': 13711, 'bhp': 13712, 'unhealthily': 13713, 'colonoscopy': 13714, 'necromancer': 13715, 'splice': 13716, 'mainbrace': 13717, 'psyches': 13718, 'scribble': 13719, 'painkiller': 13720, 'vendors': 13721, 'raspberries': 13722, 'berrilicious': 13723, 'puppet': 13724, 'watchlist': 13725, 'reset': 13726, 'saigon': 13727, 'divisions': 13728, 'sponsorship': 13729, 'strategists': 13730, 'flotus': 13731, 'steelers': 13732, 'incidences': 13733, 'opioids': 13734, 'knudsen': 13735, 'willingness': 13736, 'lagarde': 13737, 'payout': 13738, 'tractors': 13739, 'chyna': 13740, 'racehorse': 13741, 'meredith': 13742, 'vieira': 13743, 'youlookdisgusting': 13744, 'nexplanon': 13745, 'spinach': 13746, 'commish': 13747, 'copps': 13748, 'taillight': 13749, 'gatlinburg': 13750, 'weisser': 13751, 'brewery': 13752, 'frigid': 13753, 'dentists': 13754, 'zappa': 13755, 'whammys': 13756, 'kaleidoscopic': 13757, 'unbeleafably': 13758, 'birthers': 13759, 'illustrators': 13760, 'indiscretion': 13761, 'gre': 13762, 'creationism': 13763, 'folder': 13764, 'quicksand': 13765, 'topeka': 13766, 'llc': 13767, 'gmail': 13768, 'hotmail': 13769, 'wheelers': 13770, 'napaquake': 13771, 'napastrong': 13772, 'jughead': 13773, 'zack': 13774, 'hors': 13775, 'oeuvres': 13776, 'mollie': 13777, 'spilman': 13778, 'criteo': 13779, 'libations': 13780, 'blush': 13781, 'predate': 13782, 'shirley': 13783, 'diocese': 13784, 'laypeople': 13785, 'roses': 13786, 'yankees': 13787, 'coincidence': 13788, 'merkley': 13789, 'flatbread': 13790, 'forceful': 13791, 'flatirons': 13792, 'rosswood': 13793, 'whitby': 13794, 'bicyclists': 13795, 'shipyard': 13796, 'protectors': 13797, 'overalls': 13798, 'landers': 13799, 'fluctuate': 13800, 'mince': 13801, 'mathison': 13802, 'buffoonery': 13803, 'texan': 13804, 'metabolism': 13805, 'southeastern': 13806, 'scour': 13807, 'tombs': 13808, 'hotlines': 13809, 'starz': 13810, 'intoxicate': 13811, 'emerald': 13812, 'gravel': 13813, 'messam': 13814, 'peso': 13815, 'norwood': 13816, 'zinnias': 13817, 'joystick': 13818, 'procrastination': 13819, 'preciousness': 13820, 'providence': 13821, 'cianci': 13822, 'sawfish': 13823, 'uproariously': 13824, 'controllable': 13825, 'pulverize': 13826, 'sats': 13827, 'maci': 13828, 'bookout': 13829, 'mosquitos': 13830, 'venue': 13831, 'sharknado': 13832, 'adjourn': 13833, 'brosnan': 13834, 'geico': 13835, 'lancelot': 13836, 'submerge': 13837, 'langston': 13838, 'courtney': 13839, 'manicurist': 13840, 'socialize': 13841, 'araa': 13842, 'kayboard': 13843, 'bustad': 13844, 'zapp': 13845, 'rockstar': 13846, 'programmers': 13847, 'mcdermott': 13848, 'boiglerized': 13849, 'louise': 13850, 'playwright': 13851, 'playgrounds': 13852, 'weaponry': 13853, 'wack': 13854, 'statute': 13855, 'bennet': 13856, 'afterbirthers': 13857, 'balmain': 13858, 'bonafide': 13859, 'hollister': 13860, 'crazies': 13861, 'baja': 13862, 'palmar': 13863, 'loreto': 13864, 'spineless': 13865, 'banado': 13866, 'norte': 13867, 'briskly': 13868, 'braille': 13869, 'menudo': 13870, 'mullets': 13871, 'plumber': 13872, 'joshua': 13873, 'beal': 13874, 'absurd': 13875, 'plato': 13876, 'cornell': 13877, 'smokers': 13878, 'punny': 13879, 'twang': 13880, 'wapo': 13881, 'rezaian': 13882, 'cisgender': 13883, 'girthy': 13884, 'spookiest': 13885, 'devry': 13886, 'hurriedly': 13887, 'fraction': 13888, 'jauregui': 13889, 'coordinator': 13890, 'robins': 13891, 'bouillerie': 13892, 'repletion': 13893, 'billcosby': 13894, 'ration': 13895, 'mindset': 13896, 'unremarkable': 13897, 'burt': 13898, 'starks': 13899, 'righteous': 13900, 'idf': 13901, 'dagestan': 13902, 'jostle': 13903, 'radioactive': 13904, 'sloth': 13905, 'whiz': 13906, 'adulting': 13907, 'ventilator': 13908, 'emirates': 13909, 'valid': 13910, 'gadgets': 13911, 'retroactively': 13912, 'settler': 13913, 'segel': 13914, 'miscast': 13915, 'chore': 13916, 'thug': 13917, 'lilith': 13918, 'altercation': 13919, 'jurors': 13920, 'postmodern': 13921, 'arbitration': 13922, 'gateway': 13923, 'kahneman': 13924, 'gottfried': 13925, 'inventors': 13926, 'cornyn': 13927, 'innovestion': 13928, 'rackspace': 13929, 'genes': 13930, 'chen': 13931, 'tosh': 13932, 'bandit': 13933, 'isbell': 13934, 'kidnappers': 13935, 'repentence': 13936, 'reindeer': 13937, 'significantly': 13938, 'manny': 13939, 'beater': 13940, 'bronco': 13941, 'lackluster': 13942, 'stache': 13943, 'yodel': 13944, 'sawyer': 13945, 'nien': 13946, 'nunb': 13947, 'casanova': 13948, 'memorials': 13949, 'alexia': 13950, 'kosmider': 13951, 'transjourney': 13952, 'arnoth': 13953, 'bert': 13954, 'berns': 13955, 'skydiver': 13956, 'aikins': 13957, 'bombard': 13958, 'smut': 13959, 'filthiest': 13960, 'liberalization': 13961, 'radicalism': 13962, 'dragonriders': 13963, 'pern': 13964, 'blowjob': 13965, 'ca': 13966, 'revolvers': 13967, 'enlargement': 13968, 'oratory': 13969, 'lineups': 13970, 'rosa': 13971, 'ned': 13972, 'flanders': 13973, 'investigative': 13974, 'tami': 13975, 'votive': 13976, 'librarians': 13977, 'bookish': 13978, 'yamaha': 13979, 'alto': 13980, 'saxophones': 13981, 'generators': 13982, 'scooters': 13983, 'gypsy': 13984, 'pelvic': 13985, 'tufts': 13986, 'nutrition': 13987, 'aditya': 13988, 'vikram': 13989, 'sengupta': 13990, 'refrain': 13991, 'smartest': 13992, 'negotiation': 13993, 'bangkok': 13994, 'mcauliffe': 13995, 'knobs': 13996, 'lamb': 13997, 'ecclesiastic': 13998, 'headache': 13999, 'poolside': 14000, 'hotbed': 14001, 'beatify': 14002, 'endeavor': 14003, 'culminate': 14004, 'deadpan': 14005, 'meticulous': 14006, 'wanderlust': 14007, 'bae': 14008, 'madea': 14009, 'sluggish': 14010, 'chimps': 14011, 'exert': 14012, 'boz': 14013, 'fullest': 14014, 'villanova': 14015, 'piccolo': 14016, 'godparent': 14017, 'woodrow': 14018, 'mystique': 14019, 'twelve': 14020, 'rolie': 14021, 'schon': 14022, 'overpower': 14023, 'ungodly': 14024, 'cashless': 14025, 'goop': 14026, 'strudel': 14027, 'masterfully': 14028, 'gambia': 14029, 'waterston': 14030, 'barbarian': 14031, 'unsubscribe': 14032, 'purritos': 14033, 'favre': 14034, 'assimilate': 14035, 'fussy': 14036, 'icantbreathe': 14037, 'anachronism': 14038, 'procreative': 14039, 'merle': 14040, 'bumbler': 14041, 'unblemished': 14042, 'militant': 14043, 'wriggle': 14044, 'foxwoods': 14045, 'packets': 14046, 'nonbinding': 14047, 'liturgy': 14048, 'atone': 14049, 'willem': 14050, 'dafoe': 14051, 'backflip': 14052, 'incubus': 14053, 'baucus': 14054, 'bassem': 14055, 'youssef': 14056, 'trophies': 14057, 'specialists': 14058, 'mediocrity': 14059, 'brides': 14060, 'chinatown': 14061, 'presenter': 14062, 'marilu': 14063, 'henner': 14064, 'busker': 14065, 'gudmunsen': 14066, 'scotsman': 14067, 'galaxies': 14068, 'polygraph': 14069, 'chagas': 14070, 'falsely': 14071, 'centennial': 14072, 'holler': 14073, 'astrid': 14074, 'menks': 14075, 'evenhanded': 14076, 'winnie': 14077, 'blades': 14078, 'esophageal': 14079, 'cupp': 14080, 'walkable': 14081, 'underutilized': 14082, 'genomic': 14083, 'technonlogy': 14084, 'cloth': 14085, 'hapless': 14086, 'urchin': 14087, 'pickpocket': 14088, 'mantras': 14089, 'uncharted': 14090, 'straley': 14091, 'aimlessly': 14092, 'xx': 14093, 'lizzo': 14094, 'mandolins': 14095, 'aqsa': 14096, 'kalamazoo': 14097, 'bunk': 14098, 'holland': 14099, 'minutiae': 14100, 'fishin': 14101, 'gigantic': 14102, 'meander': 14103, 'absentminded': 14104, 'papacy': 14105, 'divorcee': 14106, 'scalper': 14107, 'sammy': 14108, 'geeky': 14109, 'excercise': 14110, 'embroidery': 14111, 'vacancy': 14112, 'mudbound': 14113, 'deadspin': 14114, 'breathtakingly': 14115, 'scariest': 14116, 'timberwolves': 14117, 'staywokeandvote': 14118, 'doubtful': 14119, 'ashanti': 14120, 'bankers': 14121, 'encryption': 14122, 'hootie': 14123, 'blowfish': 14124, 'superbugs': 14125, 'neuroscience': 14126, 'embryos': 14127, 'murrow': 14128, 'dirtbag': 14129, 'carbs': 14130, 'eons': 14131, 'urinals': 14132, 'overhunting': 14133, 'headdress': 14134, 'fraudsters': 14135, 'traditions': 14136, 'clavin': 14137, 'hokey': 14138, 'digitization': 14139, 'impotently': 14140, 'impassable': 14141, 'orozco': 14142, 'reggie': 14143, 'atheletes': 14144, 'airmen': 14145, 'reimpose': 14146, 'chekhovian': 14147, 'americorps': 14148, 'carabiner': 14149, 'rappel': 14150, 'jebbush': 14151, 'supersized': 14152, 'tff': 14153, 'orzabal': 14154, 'ninetysomethings': 14155, 'photoshops': 14156, 'postsecret': 14157, 'prostate': 14158, 'motives': 14159, 'aveage': 14160, 'neill': 14161, 'blomkamp': 14162, 'abscond': 14163, 'sensational': 14164, 'beatboxers': 14165, 'bingo': 14166, 'prizeless': 14167, 'bavarian': 14168, 'ewan': 14169, 'crony': 14170, 'birthright': 14171, 'californian': 14172, 'demented': 14173, 'seaweed': 14174, 'nourish': 14175, 'stossel': 14176, 'thalia': 14177, 'cassuto': 14178, 'dearbetsy': 14179, 'candidly': 14180, 'ner': 14181, 'herbe': 14182, 'monet': 14183, 'catty': 14184, 'cylinders': 14185, 'outright': 14186, 'unicef': 14187, 'magnetic': 14188, 'puget': 14189, 'fatwa': 14190, 'rushdie': 14191, 'derivative': 14192, 'libby': 14193, 'johnsville': 14194, 'lifeline': 14195, 'erlich': 14196, 'sullenberger': 14197, 'trickle': 14198, 'glance': 14199, 'regrettable': 14200, 'solidify': 14201, 'dispensary': 14202, 'wavy': 14203, 'phoenician': 14204, 'tyre': 14205, 'redistribution': 14206, 'conyers': 14207, 'verbally': 14208, 'uglification': 14209, 'woooo': 14210, 'podesta': 14211, 'conglomerate': 14212, 'selflessly': 14213, 'traits': 14214, 'whippoorwill': 14215, 'coastline': 14216, 'ageist': 14217, 'aha': 14218, 'waddle': 14219, 'lonesome': 14220, 'slack': 14221, 'blunder': 14222, 'suede': 14223, 'burr': 14224, 'lorne': 14225, 'melty': 14226, 'lexicon': 14227, 'spaceships': 14228, 'blu': 14229, 'dwarf': 14230, 'demean': 14231, 'blvd': 14232, 'axel': 14233, 'stuntman': 14234, 'bloodstream': 14235, 'poems': 14236, 'davos': 14237, 'microbrewer': 14238, 'finephilia': 14239, 'saghian': 14240, 'astronomical': 14241, 'stagehand': 14242, 'warmest': 14243, 'webmd': 14244, 'faux': 14245, 'psalm': 14246, 'offenses': 14247, 'loaves': 14248, 'gargoyles': 14249, 'arc': 14250, 'pablo': 14251, 'escobar': 14252, 'hyperrealistic': 14253, 'overpay': 14254, 'dreamcatcher': 14255, 'rearview': 14256, 'alejandro': 14257, 'nieto': 14258, 'neuroses': 14259, 'wringer': 14260, 'munchkin': 14261, 'provence': 14262, 'pont': 14263, 'gard': 14264, 'lotion': 14265, 'concur': 14266, 'hooters': 14267, 'teleport': 14268, 'foolish': 14269, 'onscreen': 14270, 'cigna': 14271, 'nitroglycerin': 14272, 'chex': 14273, 'muffin': 14274, 'slop': 14275, 'loudspeakers': 14276, 'asheville': 14277, 'howdy': 14278, 'ichabod': 14279, 'headless': 14280, 'casamigos': 14281, 'robotrix': 14282, 'norton': 14283, 'flawlessly': 14284, 'broadwell': 14285, 'notebooks': 14286, 'incentive': 14287, 'kraft': 14288, 'osteoarthritis': 14289, 'virtues': 14290, 'hospitality': 14291, 'goldie': 14292, 'hawn': 14293, 'nightingale': 14294, 'vid': 14295, 'miff': 14296, 'detangling': 14297, 'flintstones': 14298, 'petulant': 14299, 'veggie': 14300, 'eaters': 14301, 'manzo': 14302, 'broom': 14303, 'housewife': 14304, 'marni': 14305, 'umass': 14306, 'freeload': 14307, 'cells': 14308, 'satanists': 14309, 'infrequent': 14310, 'scuffle': 14311, 'rubiobot': 14312, 'showcases': 14313, 'gooding': 14314, 'bolivian': 14315, 'asimo': 14316, 'carcasses': 14317, 'civilizations': 14318, 'gems': 14319, 'catfight': 14320, 'heche': 14321, 'protagonists': 14322, 'libyans': 14323, 'ching': 14324, 'chongs': 14325, 'implosion': 14326, 'tat': 14327, 'innocents': 14328, 'preferences': 14329, 'ethic': 14330, 'lampoon': 14331, 'cathartic': 14332, 'zawahiri': 14333, 'tedtalk': 14334, 'phat': 14335, 'jncos': 14336, 'ambulances': 14337, 'betrayer': 14338, 'desperation': 14339, 'plump': 14340, 'noncompete': 14341, 'dominoes': 14342, 'pulley': 14343, 'rollers': 14344, 'broomstick': 14345, 'mallet': 14346, 'shaker': 14347, 'variants': 14348, 'multiply': 14349, 'breakneck': 14350, 'improvements': 14351, 'swarthmore': 14352, 'bestselling': 14353, 'betty': 14354, 'friedan': 14355, 'trait': 14356, 'munchstrosity': 14357, 'layboratory': 14358, 'archangels': 14359, 'dapl': 14360, 'eritrean': 14361, 'bianchi': 14362, 'societal': 14363, 'twiztid': 14364, 'agendas': 14365, 'nh': 14366, 'strobe': 14367, 'bloodshot': 14368, 'belatedly': 14369, 'zinger': 14370, 'ecuadorian': 14371, 'xabraxian': 14372, 'madaya': 14373, 'sieges': 14374, 'goon': 14375, 'squads': 14376, 'prefrontal': 14377, 'cm': 14378, 'pansies': 14379, 'acclimate': 14380, 'jaden': 14381, 'treetop': 14382, 'nicholas': 14383, 'whiff': 14384, 'lunge': 14385, 'nes': 14386, 'explainthe': 14387, 'kitkats': 14388, 'prius': 14389, 'rudimentary': 14390, 'sagan': 14391, 'superstition': 14392, 'dwyane': 14393, 'unscientific': 14394, 'unethical': 14395, 'pamplona': 14396, 'ireporters': 14397, 'flavorful': 14398, 'mountainside': 14399, 'fickle': 14400, 'purists': 14401, 'punishable': 14402, 'tbilisi': 14403, 'dancy': 14404, 'outdo': 14405, 'lampshade': 14406, 'doable': 14407, 'bicep': 14408, 'neurologists': 14409, 'astrazeneca': 14410, 'assort': 14411, 'sampler': 14412, 'midriff': 14413, 'meadow': 14414, 'droop': 14415, 'spokesbeast': 14416, 'painstaking': 14417, 'feng': 14418, 'shui': 14419, 'floridian': 14420, 'therapies': 14421, 'homogenization': 14422, 'tavis': 14423, 'abductions': 14424, 'toads': 14425, 'fomo': 14426, 'meanest': 14427, 'comfortably': 14428, 'hoffa': 14429, 'lugar': 14430, 'hamstring': 14431, 'jamaican': 14432, 'delligatti': 14433, 'credibly': 14434, 'tweed': 14435, 'fiance': 14436, 'spiegel': 14437, 'stealin': 14438, 'evenly': 14439, 'indignant': 14440, 'audacious': 14441, 'skinless': 14442, 'healers': 14443, 'fancyclothes': 14444, 'geyser': 14445, 'twelfth': 14446, 'mooney': 14447, 'possum': 14448, 'baylee': 14449, 'empathize': 14450, 'madagascar': 14451, 'verbalize': 14452, 'skulk': 14453, 'victorian': 14454, 'blanco': 14455, 'batarang': 14456, 'symbols': 14457, 'persian': 14458, 'rugs': 14459, 'treaties': 14460, 'somalian': 14461, 'vloggers': 14462, 'warranty': 14463, 'tracee': 14464, 'cringeworthy': 14465, 'exceed': 14466, 'shale': 14467, 'geopolitics': 14468, 'recusal': 14469, 'cumbre': 14470, 'ricas': 14471, 'otro': 14472, 'desastre': 14473, 'para': 14474, 'heaviest': 14475, 'vawa': 14476, 'blankly': 14477, 'liberace': 14478, 'cristiano': 14479, 'darrelle': 14480, 'revis': 14481, 'norah': 14482, 'malkovich': 14483, 'pauline': 14484, 'kael': 14485, 'roadster': 14486, 'outcry': 14487, 'arsenal': 14488, 'preconceive': 14489, 'permafrost': 14490, 'afd': 14491, 'succubus': 14492, 'bulbous': 14493, 'freakonomist': 14494, 'weightlifters': 14495, 'derrick': 14496, 'cringe': 14497, 'amateurish': 14498, 'squarepants': 14499, 'trolley': 14500, 'backsplash': 14501, 'enron': 14502, 'temper': 14503, 'razzle': 14504, 'cookout': 14505, 'unattractive': 14506, 'wtc': 14507, 'clearheaded': 14508, 'reactionist': 14509, 'morons': 14510, 'della': 14511, 'dutifully': 14512, 'mahoney': 14513, 'brangelina': 14514, 'generator': 14515, 'ballerina': 14516, 'horseback': 14517, 'camouflage': 14518, 'upstage': 14519, 'remedy': 14520, 'sr': 14521, 'freelancer': 14522, 'scrape': 14523, 'khans': 14524, 'gyrocopter': 14525, 'silmarillion': 14526, 'speechwriter': 14527, 'saver': 14528, 'farina': 14529, 'trotters': 14530, 'transcripts': 14531, 'deceitful': 14532, 'deviously': 14533, 'unibeam': 14534, 'fielder': 14535, 'toothpicks': 14536, 'testers': 14537, 'tasered': 14538, 'appellate': 14539, 'coronation': 14540, 'pest': 14541, 'unusable': 14542, 'sprig': 14543, 'parsley': 14544, 'offensiveness': 14545, 'grandfathers': 14546, 'svu': 14547, 'deliberations': 14548, 'concise': 14549, 'normality': 14550, 'centric': 14551, 'wahoo': 14552, 'aloft': 14553, 'snowiest': 14554, 'tableside': 14555, 'krishnas': 14556, 'morrie': 14557, 'aerocar': 14558, 'troposphere': 14559, 'behaivor': 14560, 'cialis': 14561, 'reviewer': 14562, 'subscribe': 14563, 'proxies': 14564, 'baruch': 14565, 'oxy': 14566, 'choco': 14567, 'hoda': 14568, 'kotb': 14569, 'lads': 14570, 'liverpool': 14571, 'terrarium': 14572, 'poz': 14573, 'ballmer': 14574, 'chakras': 14575, 'inept': 14576, 'borneo': 14577, 'goody': 14578, 'hairbrushes': 14579, 'insolent': 14580, 'delicately': 14581, 'broach': 14582, 'kaminski': 14583, 'thandie': 14584, 'winwood': 14585, 'christcon': 14586, 'unfriending': 14587, 'callaghan': 14588, 'cartwheel': 14589, 'ribbons': 14590, 'marinara': 14591, 'vicinity': 14592, 'macarena': 14593, 'ceaseless': 14594, 'bayless': 14595, 'hayward': 14596, 'homeroom': 14597, 'lynette': 14598, 'valiantly': 14599, 'tic': 14600, 'tac': 14601, 'portlandia': 14602, 'mra': 14603, 'digitalhealth': 14604, 'disposal': 14605, 'bachata': 14606, 'halo': 14607, 'multiplayer': 14608, 'shelfie': 14609, 'kukors': 14610, 'edm': 14611, 'silverware': 14612, 'prepping': 14613, 'reasonably': 14614, 'barbershop': 14615, 'henchman': 14616, 'turbine': 14617, 'alia': 14618, 'shawkat': 14619, 'lurid': 14620, 'pharmacist': 14621, 'plumage': 14622, 'debrief': 14623, 'ungrateful': 14624, 'stereo': 14625, 'communal': 14626, 'menthol': 14627, 'eaves': 14628, 'outliers': 14629, 'fairer': 14630, 'jokester': 14631, 'thrower': 14632, 'greed': 14633, 'sarawak': 14634, 'ipads': 14635, 'dreary': 14636, 'passionless': 14637, 'mein': 14638, 'hrer': 14639, 'voyeur': 14640, 'candice': 14641, 'midsize': 14642, 'jabbar': 14643, 'accelerate': 14644, 'adaptations': 14645, 'lundergan': 14646, 'carton': 14647, 'standpoint': 14648, 'scholarships': 14649, 'panhandlers': 14650, 'horseshoe': 14651, 'understandably': 14652, 'successories': 14653, 'drexel': 14654, 'caterer': 14655, 'mindhunter': 14656, 'ingber': 14657, 'freezers': 14658, 'mena': 14659, 'rift': 14660, 'wambach': 14661, 'fritz': 14662, 'macbook': 14663, 'shoddy': 14664, 'governance': 14665, 'passant': 14666, 'chessboard': 14667, 'shadowy': 14668, 'dimly': 14669, 'goiter': 14670, 'scenery': 14671, 'entrance': 14672, 'catamaran': 14673, 'fd': 14674, 'eggnog': 14675, 'litmus': 14676, 'outcrop': 14677, 'anytime': 14678, 'landmass': 14679, 'overjoy': 14680, 'mcmuffins': 14681, 'dice': 14682, 'waxwork': 14683, 'courtship': 14684, 'fifties': 14685, 'binomials': 14686, 'rza': 14687, 'toolbar': 14688, 'cursor': 14689, 'xxxxii': 14690, 'perjurer': 14691, 'napkinless': 14692, 'juul': 14693, 'squalid': 14694, 'tearless': 14695, 'emmanuelle': 14696, 'seigner': 14697, 'holyoke': 14698, 'minidress': 14699, 'skimp': 14700, 'cutups': 14701, 'rables': 14702, 'asylums': 14703, 'orifice': 14704, 'verreos': 14705, 'premarital': 14706, 'hoya': 14707, 'cybergranny': 14708, 'aaa': 14709, 'kayaker': 14710, 'hibernate': 14711, 'mika': 14712, 'himmler': 14713, 'dobkin': 14714, 'schmitt': 14715, 'coptic': 14716, 'latifah': 14717, 'waterfall': 14718, 'indiscrimination': 14719, 'humanists': 14720, 'obelisk': 14721, 'armchair': 14722, 'falsehoods': 14723, 'sycophant': 14724, 'frilly': 14725, 'ged': 14726, 'ossoff': 14727, 'lossoff': 14728, 'dinty': 14729, 'poupon': 14730, 'arabic': 14731, 'calligraphy': 14732, 'trumplethinskin': 14733, 'tyrion': 14734, 'daenerys': 14735, 'swimsuits': 14736, 'recognizable': 14737, 'scoggins': 14738, 'derelict': 14739, 'guerrilla': 14740, 'wk': 14741, 'proverb': 14742, 'blogging': 14743, 'charities': 14744, 'plotters': 14745, 'kilauea': 14746, 'bromance': 14747, 'infidelities': 14748, 'sermon': 14749, 'gar': 14750, 'blacker': 14751, 'mayfield': 14752, 'streaker': 14753, 'ceremonially': 14754, 'botanist': 14755, 'hough': 14756, 'endometriosis': 14757, 'sauna': 14758, 'tiffani': 14759, 'thiessen': 14760, 'elisabeth': 14761, 'bler': 14762, 'zohan': 14763, 'der': 14764, 'beek': 14765, 'whelan': 14766, 'nycb': 14767, 'deux': 14768, 'killmonger': 14769, 'sooo': 14770, 'defunct': 14771, 'protocol': 14772, 'kenan': 14773, 'mites': 14774, 'unpopped': 14775, 'kernels': 14776, 'mustang': 14777, 'subcontinent': 14778, 'gloat': 14779, 'draconian': 14780, 'fordham': 14781, 'allah': 14782, 'darla': 14783, 'hamburglar': 14784, 'radiohead': 14785, 'colon': 14786, 'brando': 14787, 'genres': 14788, 'vrckovnik': 14789, 'tulip': 14790, 'sylville': 14791, 'witty': 14792, 'lapel': 14793, 'bargain': 14794, 'adjective': 14795, 'mariel': 14796, 'katherine': 14797, 'heigl': 14798, 'mugshots': 14799, 'proactive': 14800, 'granny': 14801, 'ineptitude': 14802, 'yordano': 14803, 'ventura': 14804, 'marte': 14805, 'calumet': 14806, 'bondage': 14807, 'jeanette': 14808, 'parotid': 14809, 'bibhu': 14810, 'mohapatra': 14811, 'venison': 14812, 'dropthecover': 14813, 'vito': 14814, 'corleone': 14815, 'admirals': 14816, 'vicar': 14817, 'newport': 14818, 'histories': 14819, 'asap': 14820, 'pc': 14821, 'nif': 14822, 'fracas': 14823, 'livestreams': 14824, 'liveblogged': 14825, 'locust': 14826, 'oates': 14827, 'rhinos': 14828, 'retrain': 14829, 'scavengers': 14830, 'ferocious': 14831, 'peppermint': 14832, 'harding': 14833, 'persuade': 14834, 'eucharist': 14835, 'toons': 14836, 'nidetch': 14837, 'recanvass': 14838, 'sterilization': 14839, 'diaspora': 14840, 'wmd': 14841, 'andreessen': 14842, 'louisa': 14843, 'gornick': 14844, 'leery': 14845, 'manuscripts': 14846, 'underemployed': 14847, 'vocalize': 14848, 'unscripted': 14849, 'weirder': 14850, 'starlight': 14851, 'zeta': 14852, 'congrats': 14853, 'myroommateisweird': 14854, 'roomie': 14855, 'paternalizing': 14856, 'rodham': 14857, 'faqs': 14858, 'cartilage': 14859, 'mobiles': 14860, 'cadillac': 14861, 'dionne': 14862, 'nerf': 14863, 'morse': 14864, 'maraud': 14865, 'poacher': 14866, 'megadeth': 14867, 'holiest': 14868, 'windowless': 14869, 'pillage': 14870, 'kavolius': 14871, 'possibilities': 14872, 'warmonger': 14873, 'fiennes': 14874, 'foxtrot': 14875, 'kearney': 14876, 'disparities': 14877, 'salaam': 14878, 'partygoers': 14879, 'sniglets': 14880, 'dascha': 14881, 'polanco': 14882, 'tumblr': 14883, 'reclassify': 14884, 'pronunciation': 14885, 'siberian': 14886, 'giddily': 14887, 'loserman': 14888, 'validate': 14889, 'guardrail': 14890, 'bangerz': 14891, 'titanium': 14892, 'nannies': 14893, 'thereisaidit': 14894, 'nutritious': 14895, 'farther': 14896, 'supernatural': 14897, 'defenders': 14898, 'ney': 14899, 'countless': 14900, 'schoolyard': 14901, 'evaluations': 14902, 'mummies': 14903, 'archbishops': 14904, 'droves': 14905, 'aweism': 14906, 'humanist': 14907, 'transcendence': 14908, 'snail': 14909, 'chia': 14910, 'negligible': 14911, 'luis': 14912, 'gutierrez': 14913, 'westernize': 14914, 'dibs': 14915, 'pompeii': 14916, 'excavation': 14917, 'facsimile': 14918, 'disconcert': 14919, 'bogosian': 14920, 'pallid': 14921, 'zales': 14922, 'abedin': 14923, 'trailblazers': 14924, 'emoticon': 14925, 'crucifix': 14926, 'punisher': 14927, 'tente': 14928, 'mischa': 14929, 'barton': 14930, 'outkast': 14931, 'attainable': 14932, 'mikey': 14933, 'foam': 14934, 'parish': 14935, 'redirect': 14936, 'leppard': 14937, 'superstore': 14938, 'deceptively': 14939, 'tempurpedic': 14940, 'ricci': 14941, 'solvents': 14942, 'recuperate': 14943, 'oncoming': 14944, 'schneider': 14945, 'aztec': 14946, 'chowing': 14947, 'oberst': 14948, 'cessna': 14949, 'cedrick': 14950, 'chatman': 14951, 'freight': 14952, 'piggy': 14953, 'bhutanese': 14954, 'lhabab': 14955, 'duchen': 14956, 'nephews': 14957, 'unwarranted': 14958, 'ophelia': 14959, 'recuse': 14960, 'decapitate': 14961, 'fanduel': 14962, 'willi': 14963, 'portfolio': 14964, 'phd': 14965, 'niagara': 14966, 'prepper': 14967, 'demoralize': 14968, 'tonga': 14969, 'taufatofua': 14970, 'irreplaceable': 14971, 'kindergartens': 14972, 'vinnie': 14973, 'nonindigenous': 14974, 'entomologist': 14975, 'videographer': 14976, 'perky': 14977, 'underlie': 14978, 'titties': 14979, 'sect': 14980, 'voila': 14981, 'awww': 14982, 'waterspout': 14983, 'spacex': 14984, 'minus': 14985, 'pippa': 14986, 'barkley': 14987, 'phantom': 14988, 'bocelli': 14989, 'uptight': 14990, 'matron': 14991, 'businessmen': 14992, 'dudley': 14993, 'murillo': 14994, 'neoliberalism': 14995, 'overprivileged': 14996, 'offshorers': 14997, 'inboxes': 14998, 'deflategate': 14999, 'zest': 15000, 'trinidad': 15001, 'tobago': 15002, 'dramatize': 15003, 'countryside': 15004, 'panhandler': 15005, 'revisions': 15006, 'trumpbeast': 15007, 'difficulties': 15008, 'seclude': 15009, 'fencers': 15010, 'malt': 15011, 'homies': 15012, 'ejaculation': 15013, 'neutrogena': 15014, 'antacid': 15015, 'dopamine': 15016, 'asbell': 15017, 'juiced': 15018, 'weighty': 15019, 'reissue': 15020, 'jessie': 15021, 'gargamel': 15022, 'snoopy': 15023, 'jlaw': 15024, 'dominic': 15025, 'casulli': 15026, 'bertolli': 15027, 'saturate': 15028, 'nielsens': 15029, 'trumpist': 15030, 'underdevelop': 15031, 'arbor': 15032, 'janine': 15033, 'molinari': 15034, 'infamy': 15035, 'eclairs': 15036, 'dorito': 15037, 'wolff': 15038, 'ofiesh': 15039, 'kaytlin': 15040, 'bailey': 15041, 'stabbings': 15042, 'thorax': 15043, 'clemson': 15044, 'lsu': 15045, 'evangelicalism': 15046, 'differentiation': 15047, 'karma': 15048, 'turban': 15049, 'gendiy': 15050, 'raddatz': 15051, 'mvp': 15052, 'volatility': 15053, 'boulud': 15054, 'alum': 15055, 'spokeschild': 15056, 'griswold': 15057, 'sportscast': 15058, 'mildly': 15059, 'unintentionally': 15060, 'mbta': 15061, 'cobbler': 15062, 'desserts': 15063, 'unbefitting': 15064, 'magnate': 15065, 'carmen': 15066, 'carrera': 15067, 'slushie': 15068, 'squiggly': 15069, 'preserver': 15070, 'unbreakable': 15071, 'enrique': 15072, 'iglesias': 15073, 'kournikova': 15074, 'stimulation': 15075, 'subdivisions': 15076, 'fiber': 15077, 'optics': 15078, 'radish': 15079, 'fryer': 15080, 'mobster': 15081, 'taekwondo': 15082, 'horizons': 15083, 'necrotic': 15084, 'jerseys': 15085, 'unplanned': 15086, 'belamide': 15087, 'dreyfus': 15088, 'billiards': 15089, 'dominica': 15090, 'insignificant': 15091, 'simulation': 15092, 'abhorrent': 15093, 'quintanilla': 15094, 'beautify': 15095, 'tarana': 15096, 'hizballah': 15097, 'undying': 15098, 'girlboss': 15099, 'rouse': 15100, 'dataclysm': 15101, 'burnout': 15102, 'lightweights': 15103, 'poseidon': 15104, 'windsurf': 15105, 'vowel': 15106, 'downpour': 15107, 'sneer': 15108, 'wackier': 15109, 'snakepit': 15110, 'rotund': 15111, 'monogramed': 15112, 'arafat': 15113, 'perceive': 15114, 'habitable': 15115, 'bertha': 15116, 'southerners': 15117, 'babysit': 15118, 'eavesdrop': 15119, 'utero': 15120, 'oblivion': 15121, 'cuddly': 15122, 'rhys': 15123, 'selfhood': 15124, 'ssy': 15125, 'impeccable': 15126, 'aggravate': 15127, 'sunbathe': 15128, 'teas': 15129, 'coneflower': 15130, 'designations': 15131, 'mitthew': 15132, 'appetizer': 15133, 'battlefront': 15134, 'slicker': 15135, 'oxen': 15136, 'tithe': 15137, 'endangerment': 15138, 'dylann': 15139, 'depopulate': 15140, 'tis': 15141, 'calmer': 15142, 'torchlit': 15143, 'incurable': 15144, 'strawberries': 15145, 'minj': 15146, 'pragmatist': 15147, 'hitchhikers': 15148, 'awkwardness': 15149, 'aikido': 15150, 'flier': 15151, 'ronnie': 15152, 'subminimum': 15153, 'dwarvish': 15154, 'pager': 15155, 'smb': 15156, 'torrenting': 15157, 'raphaelite': 15158, 'contessa': 15159, 'electrician': 15160, 'priests': 15161, 'jana': 15162, 'ifttt': 15163, 'transactions': 15164, 'prankster': 15165, 'caregiver': 15166, 'meldonium': 15167, 'minibar': 15168, 'dominican': 15169, 'warplanes': 15170, 'wallis': 15171, 'tribalism': 15172, 'parsons': 15173, 'inedibles': 15174, 'rica': 15175, 'feat': 15176, 'bitchy': 15177, 'swoop': 15178, 'munchies': 15179, 'efficiency': 15180, 'millard': 15181, 'fillmore': 15182, 'smuggler': 15183, 'furries': 15184, 'quincea': 15185, 'nikes': 15186, 'adjudicatory': 15187, 'tendon': 15188, 'goldstein': 15189, 'pitchers': 15190, 'strollers': 15191, 'puck': 15192, 'savior': 15193, 'bolling': 15194, 'rhythm': 15195, 'generously': 15196, 'pedophiles': 15197, 'seabird': 15198, 'landowning': 15199, 'exemption': 15200, 'anchorage': 15201, 'crotchless': 15202, 'typeface': 15203, 'insincerity': 15204, 'plugin': 15205, 'sartorial': 15206, 'punta': 15207, 'cana': 15208, 'telegraph': 15209, 'hmm': 15210, 'textbooks': 15211, 'reggaet': 15212, 'nuggets': 15213, 'syllable': 15214, 'fedotowsky': 15215, 'manno': 15216, 'assing': 15217, 'griffith': 15218, 'censure': 15219, 'asimov': 15220, 'administrations': 15221, 'offload': 15222, 'hungary': 15223, 'colts': 15224, 'potomac': 15225, 'madoff': 15226, 'spoiler': 15227, 'labrador': 15228, 'fafsa': 15229, 'apgar': 15230, 'typos': 15231, 'pothole': 15232, 'cobblestone': 15233, 'devastation': 15234, 'vanuatu': 15235, 'rehabilitation': 15236, 'palance': 15237, 'moranis': 15238, 'snapper': 15239, 'xylophonist': 15240, 'burkini': 15241, 'tamagotchi': 15242, 'globalist': 15243, 'plutocrat': 15244, 'incarcerate': 15245, 'abide': 15246, 'hallburton': 15247, 'kirkus': 15248, 'collections': 15249, 'dusty': 15250, 'permutations': 15251, 'estrada': 15252, 'quaaludes': 15253, 'quaalude': 15254, 'lovin': 15255, 'delegitimize': 15256, 'favreau': 15257, 'muzlim': 15258, 'terroist': 15259, 'cowpoke': 15260, 'aruban': 15261, 'marti': 15262, 'noxon': 15263, 'dunst': 15264, 'genealogists': 15265, 'lotus': 15266, 'serenity': 15267, 'strew': 15268, 'ellison': 15269, 'uninspiring': 15270, 'pepa': 15271, 'hogsmeade': 15272, 'russet': 15273, 'sakharov': 15274, 'cobweb': 15275, 'sectarian': 15276, 'authoritarianism': 15277, 'bahrain': 15278, 'secular': 15279, 'gilliam': 15280, 'philander': 15281, 'voyeurs': 15282, 'maureen': 15283, 'warheads': 15284, 'laramie': 15285, 'quiver': 15286, 'gumby': 15287, 'mediation': 15288, 'microscopic': 15289, 'petri': 15290, 'raunchy': 15291, 'lactose': 15292, 'alvin': 15293, 'masterstoke': 15294, 'visualize': 15295, 'irresponsible': 15296, 'presser': 15297, 'seizures': 15298, 'atx': 15299, 'clive': 15300, 'cussler': 15301, 'skeptics': 15302, 'olay': 15303, 'moisturize': 15304, 'scampis': 15305, 'org': 15306, 'hydrate': 15307, 'culpo': 15308, 'inexplicably': 15309, 'onlookers': 15310, 'cigar': 15311, 'seniority': 15312, 'profession': 15313, 'birdhouse': 15314, 'faction': 15315, 'gosselaar': 15316, 'aftershocks': 15317, 'bicentennial': 15318, 'ruckeyser': 15319, 'shortcut': 15320, 'zinc': 15321, 'remission': 15322, 'westernization': 15323, 'cottage': 15324, 'waverly': 15325, 'bello': 15326, 'cinzano': 15327, 'ayurveda': 15328, 'conversationalist': 15329, 'daphne': 15330, 'paypal': 15331, 'ios': 15332, 'earplugs': 15333, 'walkouts': 15334, 'rubbermaid': 15335, 'profitably': 15336, 'supplier': 15337, 'servicewomen': 15338, 'eyeball': 15339, 'jeweler': 15340, 'unrelated': 15341, 'metropolitan': 15342, 'garofalo': 15343, 'dickipedia': 15344, 'bikram': 15345, 'planetarium': 15346, 'unrelenting': 15347, 'expenditure': 15348, 'frenzied': 15349, 'unofficial': 15350, 'weepy': 15351, 'pansy': 15352, 'swalwell': 15353, 'baha': 15354, 'thinner': 15355, 'granta': 15356, 'deride': 15357, 'philistines': 15358, 'celinda': 15359, 'intergenerational': 15360, 'maisie': 15361, 'politicize': 15362, 'judiciary': 15363, 'techie': 15364, 'pectoral': 15365, 'taser': 15366, 'corroborate': 15367, 'lunchables': 15368, 'houghton': 15369, 'mifflin': 15370, 'harcourt': 15371, 'pusha': 15372, 'julie': 15373, 'andrews': 15374, 'talc': 15375, 'genders': 15376, 'grimsby': 15377, 'snuggly': 15378, 'squalor': 15379, 'doubter': 15380, 'defer': 15381, 'legionnaire': 15382, 'potent': 15383, 'psychosis': 15384, 'leyco': 15385, 'nyquil': 15386, 'absorbency': 15387, 'tacky': 15388, 'statisticians': 15389, 'catcaller': 15390, 'gavels': 15391, 'buren': 15392, 'impala': 15393, 'vol': 15394, 'vent': 15395, 'luckiest': 15396, 'pout': 15397, 'embitter': 15398, 'menus': 15399, 'humorous': 15400, 'mcchicken': 15401, 'fundamentally': 15402, 'manvendra': 15403, 'singh': 15404, 'gohil': 15405, 'neurological': 15406, 'dolphinsoul': 15407, 'showerin': 15408, 'chrysalis': 15409, 'gastropub': 15410, 'smg': 15411, 'coliseum': 15412, 'nxivm': 15413, 'masterson': 15414, 'biomom': 15415, 'bodymate': 15416, 'massively': 15417, 'disengage': 15418, 'fanpage': 15419, 'hottie': 15420, 'facialist': 15421, 'downtown': 15422, 'misspeak': 15423, 'chainsaws': 15424, 'homebuilding': 15425, 'sprinklers': 15426, 'kidman': 15427, 'preference': 15428, 'badtz': 15429, 'maru': 15430, 'sanrio': 15431, 'counteract': 15432, 'eel': 15433, 'smelt': 15434, 'renominates': 15435, 'ins': 15436, 'facemask': 15437, 'disproven': 15438, 'retry': 15439, 'ducharme': 15440, 'sparkly': 15441, 'merritt': 15442, 'midgets': 15443, 'kelsea': 15444, 'ballerini': 15445, 'timelapses': 15446, 'bice': 15447, 'slurp': 15448, 'superrman': 15449, 'copyedit': 15450, 'lesley': 15451, 'kagen': 15452, 'freudian': 15453, 'lifehouse': 15454, 'walkover': 15455, 'passions': 15456, 'interactive': 15457, 'thatcher': 15458, 'foolishness': 15459, 'hallmarks': 15460, 'plastics': 15461, 'zappos': 15462, 'gopro': 15463, 'cheerleaders': 15464, 'politwoops': 15465, 'omnigrain': 15466, 'cheerios': 15467, 'pedal': 15468, 'recant': 15469, 'janitors': 15470, 'crucify': 15471, 'mildew': 15472, 'hypocrisies': 15473, 'ohh': 15474, 'sederer': 15475, 'matador': 15476, 'bullring': 15477, 'vaporize': 15478, 'malnutrition': 15479, 'gunner': 15480, 'typically': 15481, 'petronas': 15482, 'skybridge': 15483, 'bart': 15484, 'nemtsov': 15485, 'jahlil': 15486, 'okafor': 15487, 'newfound': 15488, 'duchovny': 15489, 'miniseries': 15490, 'enrollees': 15491, 'gutsy': 15492, 'strive': 15493, 'calmly': 15494, 'evictions': 15495, 'correspondence': 15496, 'daemon': 15497, 'transformer': 15498, 'turnkey': 15499, 'ruben': 15500, 'studdard': 15501, 'waft': 15502, 'resolute': 15503, 'roost': 15504, 'tel': 15505, 'aviv': 15506, 'ghraib': 15507, 'checkpoint': 15508, 'hud': 15509, 'arrows': 15510, 'hypothesize': 15511, 'thirds': 15512, 'summa': 15513, 'laude': 15514, 'syrupy': 15515, 'gchatting': 15516, 'dressbarn': 15517, 'sluts': 15518, 'chico': 15519, 'birdseed': 15520, 'multifaceted': 15521, 'organisms': 15522, 'kerfuffle': 15523, 'poets': 15524, 'bloodfest': 15525, 'workshop': 15526, 'spores': 15527, 'developer': 15528, 'scholly': 15529, 'cto': 15530, 'pirollo': 15531, 'tinderbox': 15532, 'shepherd': 15533, 'bloomsday': 15534, 'doorstop': 15535, 'nw': 15536, 'sommelier': 15537, 'hijabista': 15538, 'burqa': 15539, 'stave': 15540, 'overdo': 15541, 'barcelona': 15542, 'illegitimate': 15543, 'roske': 15544, 'frogmen': 15545, 'hardwork': 15546, 'mofo': 15547, 'roundabouts': 15548, 'haphazardly': 15549, 'unsolved': 15550, 'butler': 15551, 'mathew': 15552, 'reconfirmation': 15553, 'boars': 15554, 'huang': 15555, 'farmland': 15556, 'murkowski': 15557, 'lsd': 15558, 'neurology': 15559, 'mistress': 15560, 'rebrands': 15561, 'disappointimals': 15562, 'inaccuracies': 15563, 'auditors': 15564, 'eastwood': 15565, 'airtight': 15566, 'knocker': 15567, 'asteroid': 15568, 'technical': 15569, 'obi': 15570, 'wan': 15571, 'kenobi': 15572, 'chalk': 15573, 'murrieta': 15574, 'taxidermied': 15575, 'zapper': 15576, 'sullivan': 15577, 'boon': 15578, 'searchlight': 15579, 'ringer': 15580, 'noteworthy': 15581, 'chihuly': 15582, 'plagiarize': 15583, 'madeline': 15584, 'multiplex': 15585, 'lush': 15586, 'bloodbombs': 15587, 'restaurateur': 15588, 'squatters': 15589, 'granddaughters': 15590, 'soliders': 15591, 'ssris': 15592, 'municipality': 15593, 'yeezy': 15594, 'vil': 15595, 'bookshelf': 15596, 'himalayas': 15597, 'cheesesteak': 15598, 'hubbard': 15599, 'scientologist': 15600, 'dreamworks': 15601, 'skg': 15602, 'tutus': 15603, 'sequins': 15604, 'equivalency': 15605, 'floral': 15606, 'detour': 15607, 'physicians': 15608, 'khrushchev': 15609, 'ferrante': 15610, 'suppliers': 15611, 'masquerade': 15612, 'awfully': 15613, 'unrepresentative': 15614, 'overflow': 15615, 'mediator': 15616, 'textured': 15617, 'nappy': 15618, 'perminators': 15619, 'precarious': 15620, 'intellectuals': 15621, 'zendaya': 15622, 'upbraid': 15623, 'scoff': 15624, 'egregious': 15625, 'ubs': 15626, 'foggy': 15627, 'astana': 15628, 'terrific': 15629, 'aubrey': 15630, 'tab': 15631, 'leisure': 15632, 'antisocial': 15633, 'groovin': 15634, 'lyricist': 15635, 'barlow': 15636, 'biracial': 15637, 'negate': 15638, 'flirty': 15639, 'continuity': 15640, 'barborak': 15641, 'lerner': 15642, 'differentiator': 15643, 'mantra': 15644, 'evancho': 15645, 'pyer': 15646, 'apnea': 15647, 'astrological': 15648, 'recapture': 15649, 'populists': 15650, 'wagnerism': 15651, 'macon': 15652, 'asparagus': 15653, 'achievements': 15654, 'midwesterners': 15655, 'alcoholics': 15656, 'fratricide': 15657, 'nationally': 15658, 'murph': 15659, 'gogh': 15660, 'ovarian': 15661, 'ko': 15662, 'reincarnate': 15663, 'erratic': 15664, 'gyno': 15665, 'birtherism': 15666, 'dreamily': 15667, 'scandinavia': 15668, 'chinaware': 15669, 'indecent': 15670, 'mire': 15671, 'establishments': 15672, 'unlawfully': 15673, 'economist': 15674, 'brownribboncampaign': 15675, 'laden': 15676, 'bellwether': 15677, 'hoosier': 15678, 'groundskeeper': 15679, 'circulate': 15680, 'millie': 15681, 'overfunded': 15682, 'eccentricities': 15683, 'disingenuous': 15684, 'lorna': 15685, 'meditations': 15686, 'blackness': 15687, 'olbermann': 15688, 'grabber': 15689, 'diversify': 15690, 'cypriots': 15691, 'monastery': 15692, 'coon': 15693, 'lovestruck': 15694, 'greats': 15695, 'cinnabontography': 15696, 'sidney': 15697, 'appraise': 15698, 'overemphasize': 15699, 'goonies': 15700, 'purr': 15701, 'chobani': 15702, 'jetpack': 15703, 'playable': 15704, 'cryptically': 15705, 'rites': 15706, 'fajita': 15707, 'spade': 15708, 'dislocate': 15709, 'comforter': 15710, 'unzip': 15711, 'tweetstorm': 15712, 'invisibility': 15713, 'heartstrings': 15714, 'madd': 15715, 'grieco': 15716, 'faintly': 15717, 'adoptee': 15718, 'racialized': 15719, 'addcandytoamovie': 15720, 'geffen': 15721, 'playhouse': 15722, 'ebooks': 15723, 'crisp': 15724, 'dapperly': 15725, 'kiyoko': 15726, 'benton': 15727, 'inherently': 15728, 'halfheartedly': 15729, 'esports': 15730, 'peds': 15731, 'shittiest': 15732, 'truckers': 15733, 'criers': 15734, 'polanski': 15735, 'controversies': 15736, 'suction': 15737, 'chandelier': 15738, 'prohibition': 15739, 'heartland': 15740, 'unlovable': 15741, 'technophile': 15742, 'ortiz': 15743, 'introspection': 15744, 'sharpen': 15745, 'cautionary': 15746, 'freemasons': 15747, 'purchaser': 15748, 'gabor': 15749, 'blameless': 15750, 'injectable': 15751, 'ripper': 15752, 'jitterbug': 15753, 'killin': 15754, 'disinterest': 15755, 'pekingese': 15756, 'weeklong': 15757, 'bellissima': 15758, 'flonase': 15759, 'immorality': 15760, 'hangin': 15761, 'tunisian': 15762, 'azores': 15763, 'thewrap': 15764, 'spout': 15765, 'breeders': 15766, 'mastiffeagle': 15767, 'sandboxes': 15768, 'inhabit': 15769, 'beatty': 15770, 'zz': 15771, 'megaphone': 15772, 'informative': 15773, 'landon': 15774, 'unasked': 15775, 'unsee': 15776, 'unpunished': 15777, 'fraudulent': 15778, 'nbd': 15779, 'nj': 15780, 'brazenly': 15781, 'charla': 15782, 'hackathons': 15783, 'schweitzer': 15784, 'pele': 15785, 'painters': 15786, 'cassoulet': 15787, 'rembrandt': 15788, 'gugu': 15789, 'spouses': 15790, 'loudspeaker': 15791, 'holdout': 15792, 'martens': 15793, 'janis': 15794, 'trainspotting': 15795, 'councilwomen': 15796, 'stationary': 15797, 'midway': 15798, 'plunder': 15799, 'turks': 15800, 'dumbfound': 15801, 'indecision': 15802, 'maw': 15803, 'pitifully': 15804, 'pizzagate': 15805, 'hogwarts': 15806, 'teri': 15807, 'hatcher': 15808, 'axl': 15809, 'polyamorous': 15810, 'triad': 15811, 'supermax': 15812, 'bff': 15813, 'equivalent': 15814, 'confirmations': 15815, 'izzo': 15816, 'spartans': 15817, 'cheyenne': 15818, 'rooftops': 15819, 'haim': 15820, 'prayforpaulgeorge': 15821, 'locator': 15822, 'kemper': 15823, 'caustic': 15824, 'surfboard': 15825, 'wkzn': 15826, 'medium': 15827, 'numbness': 15828, 'freestyles': 15829, 'slo': 15830, 'chafee': 15831, 'conspiracies': 15832, 'macaulay': 15833, 'culkin': 15834, 'anarchists': 15835, 'riverwalk': 15836, 'cyberspace': 15837, 'kurrencykook': 15838, 'sofia': 15839, 'sis': 15840, 'sanctuaries': 15841, 'tardy': 15842, 'tobolowsky': 15843, 'geodes': 15844, 'females': 15845, 'fax': 15846, 'prophecy': 15847, 'commandment': 15848, 'quieter': 15849, 'hofner': 15850, 'houseplant': 15851, 'ctrl': 15852, 'rollercoaster': 15853, 'pelicans': 15854, 'preheat': 15855, 'creampuff': 15856, 'airwaves': 15857, 'crackle': 15858, 'geddy': 15859, 'equip': 15860, 'mandibles': 15861, 'naawp': 15862, 'linen': 15863, 'abe': 15864, 'undernutrition': 15865, 'donaldson': 15866, 'kamau': 15867, 'quiznos': 15868, 'flout': 15869, 'nda': 15870, 'dukes': 15871, 'hazzard': 15872, 'mcdougal': 15873, 'indulgent': 15874, 'trumpismo': 15875, 'jillian': 15876, 'fag': 15877, 'classiest': 15878, 'mres': 15879, 'flank': 15880, 'nevertheless': 15881, 'funkier': 15882, 'supplant': 15883, 'obscenity': 15884, 'chamomile': 15885, 'motto': 15886, 'anesthetize': 15887, 'outbursts': 15888, 'slob': 15889, 'authorization': 15890, 'flunk': 15891, 'decompose': 15892, 'mollusks': 15893, 'ladenschlussgesetz': 15894, 'jamar': 15895, 'basset': 15896, 'caduceus': 15897, 'fingerless': 15898, 'synonyms': 15899, 'surplus': 15900, 'blogosphere': 15901, 'respectful': 15902, 'foulest': 15903, 'hardball': 15904, 'kathleen': 15905, 'hartnett': 15906, 'siren': 15907, 'fallacy': 15908, 'officiants': 15909, 'chaplaincy': 15910, 'packet': 15911, 'smalltalk': 15912, 'nuanced': 15913, 'bulimia': 15914, 'nhs': 15915, 'abysmal': 15916, 'nonexistent': 15917, 'vidcon': 15918, 'tley': 15919, 'lanterns': 15920, 'etheridge': 15921, 'wallem': 15922, 'chord': 15923, 'strenlow': 15924, 'dander': 15925, 'typography': 15926, 'equivalence': 15927, 'strawberry': 15928, 'blondes': 15929, 'shondaland': 15930, 'hardwood': 15931, 'arcade': 15932, 'iver': 15933, 'broward': 15934, 'dvds': 15935, 'hew': 15936, 'uninvestigated': 15937, 'budapest': 15938, 'soros': 15939, 'deporters': 15940, 'serene': 15941, 'stupendous': 15942, 'buglers': 15943, 'billionnaire': 15944, 'bourbon': 15945, 'corbett': 15946, 'regenerate': 15947, 'rawlings': 15948, 'dumbed': 15949, 'soloway': 15950, 'enlistment': 15951, 'geist': 15952, 'fer': 15953, 'brotherly': 15954, 'divorc': 15955, 'concoction': 15956, 'riverboat': 15957, 'horseracing': 15958, 'rubenesque': 15959, 'picassoesque': 15960, 'rationality': 15961, 'clamp': 15962, 'fireeye': 15963, 'farmlands': 15964, 'enema': 15965, 'backroom': 15966, 'trumpzilla': 15967, 'pilgrims': 15968, 'mohandas': 15969, 'abominable': 15970, 'misbehavior': 15971, 'dol': 15972, 'sinful': 15973, 'luftwaffle': 15974, 'superiority': 15975, 'dirtiest': 15976, 'assess': 15977, 'supermodels': 15978, 'plutocratic': 15979, 'freakish': 15980, 'nixonian': 15981, 'juxtapose': 15982, 'iconography': 15983, 'kindly': 15984, 'stfu': 15985, 'dora': 15986, 'kurdistan': 15987, 'referendums': 15988, 'pasties': 15989, 'summerslam': 15990, 'lesser': 15991, 'viability': 15992, 'koechner': 15993, 'ineffectual': 15994, 'mags': 15995, 'gi': 15996, 'alda': 15997, 'sag': 15998, 'kudrow': 15999, 'wyatt': 16000, 'clairvoyant': 16001, 'vaughn': 16002, 'arbus': 16003, 'facto': 16004, 'jowls': 16005, 'eyelid': 16006, 'kabat': 16007, 'thaler': 16008, 'baranski': 16009, 'powher': 16010, 'kathryn': 16011, 'bigelow': 16012, 'directress': 16013, 'mealy': 16014, 'romano': 16015, 'frequent': 16016, 'flighter': 16017, 'responsibly': 16018, 'hassan': 16019, 'jameel': 16020, 'ska': 16021, 'incoherent': 16022, 'maids': 16023, 'grandmothers': 16024, 'textile': 16025, 'redwood': 16026, 'slangry': 16027, 'benevolent': 16028, 'possessor': 16029, 'nepotist': 16030, 'scattergories': 16031, 'disadvantage': 16032, 'fisting': 16033, 'enactors': 16034, 'directives': 16035, 'bogetti': 16036, 'revisionist': 16037, 'houseboat': 16038, 'moloch': 16039, 'metta': 16040, 'emaciate': 16041, 'mistreat': 16042, 'curiously': 16043, 'restructure': 16044, 'bluff': 16045, 'tundra': 16046, 'emptiness': 16047, 'jacob': 16048, 'ulbricht': 16049, 'nicest': 16050, 'westeros': 16051, 'gull': 16052, 'infidel': 16053, 'toffee': 16054, 'bodyguard': 16055, 'overselling': 16056, 'horcrux': 16057, 'transylvania': 16058, 'basis': 16059, 'uptown': 16060, 'beggar': 16061, 'firewood': 16062, 'farewells': 16063, 'insanity': 16064, 'epperson': 16065, 'unmask': 16066, 'blindingly': 16067, 'dahlia': 16068, 'precipice': 16069, 'goofball': 16070, 'arthamptons': 16071, 'appelhof': 16072, 'maidstone': 16073, 'punks': 16074, 'cartographers': 16075, 'sprout': 16076, 'wrapper': 16077, 'zealot': 16078, 'formaldehyde': 16079, 'wiretapped': 16080, 'hodor': 16081, 'thanos': 16082, 'wee': 16083, 'listerine': 16084, 'undeserved': 16085, 'aspirin': 16086, 'fedexed': 16087, 'snafu': 16088, 'uncontrollable': 16089, 'criteria': 16090, 'kylo': 16091, 'nichols': 16092, 'uncuffing': 16093, 'cronies': 16094, 'saget': 16095, 'antelopeater': 16096, 'passport': 16097, 'waver': 16098, 'priesthood': 16099, 'anus': 16100, 'aussie': 16101, 'pictorial': 16102, 'mouseketeer': 16103, 'marque': 16104, 'lynche': 16105, 'extenders': 16106, 'chicanery': 16107, 'violet': 16108, 'zambia': 16109, 'groan': 16110, 'kon': 16111, 'tiki': 16112, 'rookies': 16113, 'upend': 16114, 'microfiber': 16115, 'chug': 16116, 'cephas': 16117, 'heyer': 16118, 'wilmot': 16119, 'proviso': 16120, 'idlib': 16121, 'pushups': 16122, 'maersk': 16123, 'tar': 16124, 'unwatched': 16125, 'unblinking': 16126, 'expletives': 16127, 'gallon': 16128, 'sexiness': 16129, 'meadows': 16130, 'fountains': 16131, 'gigabyte': 16132, 'latinas': 16133, 'unanimous': 16134, 'pinchuk': 16135, 'mistral': 16136, 'warships': 16137, 'buyer': 16138, 'disinfectant': 16139, 'wittels': 16140, 'stingray': 16141, 'recoil': 16142, 'tarp': 16143, 'pcos': 16144, 'linebacker': 16145, 'cersei': 16146, 'annoyingly': 16147, 'gild': 16148, 'unearned': 16149, 'lids': 16150, 'impair': 16151, 'bacchanalia': 16152, 'decaf': 16153, 'cirque': 16154, 'soleil': 16155, 'thimble': 16156, 'token': 16157, 'frein': 16158, 'upham': 16159, 'yeager': 16160, 'laboriously': 16161, 'burrell': 16162, 'vfw': 16163, 'cluelessly': 16164, 'innuendo': 16165, 'amputees': 16166, 'interconnect': 16167, 'resourceful': 16168, 'annoyances': 16169, 'scoot': 16170, 'faerie': 16171, 'classrooms': 16172, 'ndez': 16173, 'cholesterol': 16174, 'royce': 16175, 'uday': 16176, 'nutsack': 16177, 'shocker': 16178, 'monstrously': 16179, 'lemmy': 16180, 'motorhead': 16181, 'starfucker': 16182, 'caleb': 16183, 'slickers': 16184, 'deprivation': 16185, 'chesapeake': 16186, 'mcclendon': 16187, 'leprechaun': 16188, 'schlegel': 16189, 'hyatt': 16190, 'adjectives': 16191, 'par': 16192, 'suade': 16193, 'corroboration': 16194, 'chihuahua': 16195, 'dane': 16196, 'endear': 16197, 'airspace': 16198, 'ish': 16199, 'glandular': 16200, 'crazier': 16201, 'stalker': 16202, 'famine': 16203, 'garza': 16204, 'indigestion': 16205, 'publik': 16206, 'constructive': 16207, 'diplomas': 16208, 'dar': 16209, 'colgate': 16210, 'grout': 16211, 'whooshsnaps': 16212, 'kermit': 16213, 'shaggy': 16214, 'battlefield': 16215, 'karzai': 16216, 'haslam': 16217, 'doling': 16218, 'monstrous': 16219, 'gundy': 16220, 'jesuit': 16221, 'paraguay': 16222, 'resurgence': 16223, 'parasite': 16224, 'unicyclist': 16225, 'ecologists': 16226, 'geckos': 16227, 'worrell': 16228, 'wikiconstitution': 16229, 'leia': 16230, 'cookbook': 16231, 'overseer': 16232, 'headaches': 16233, 'waymo': 16234, 'uninhabitable': 16235, 'heineken': 16236, 'bruegger': 16237, 'bagels': 16238, 'mytron': 16239, 'illuminati': 16240, 'overlord': 16241, 'soybean': 16242, 'masterchef': 16243, 'prawn': 16244, 'glint': 16245, 'unicorns': 16246, 'mystify': 16247, 'sunni': 16248, 'dormant': 16249, 'supervolcano': 16250, 'relocation': 16251, 'ceramic': 16252, 'kindergartner': 16253, 'homework': 16254, 'handmade': 16255, 'ashtray': 16256, 'militiaman': 16257, 'lynda': 16258, 'heffernan': 16259, 'showrunners': 16260, 'ritz': 16261, 'arrhythmically': 16262, 'offspring': 16263, 'dicks': 16264, 'timey': 16265, 'slovenly': 16266, 'ringo': 16267, 'coastal': 16268, 'suzy': 16269, 'qs': 16270, 'md': 16271, 'friendliest': 16272, 'deepfake': 16273, 'iuds': 16274, 'corea': 16275, 'comical': 16276, 'groin': 16277, 'phenomena': 16278, 'dolezals': 16279, 'swizz': 16280, 'beatz': 16281, 'kehlani': 16282, 'regretful': 16283, 'wabi': 16284, 'sabi': 16285, 'imperfection': 16286, 'extendable': 16287, 'gurley': 16288, 'obituaries': 16289, 'ballistics': 16290, 'tomatoes': 16291, 'belle': 16292, 'jewmerica': 16293, 'minter': 16294, 'hd': 16295, 'duplicity': 16296, 'trekkie': 16297, 'correspondent': 16298, 'mohyeldin': 16299, 'epley': 16300, 'valencia': 16301, 'reductions': 16302, 'whichever': 16303, 'bonuses': 16304, 'breakthroughs': 16305, 'pennsylvanian': 16306, 'insights': 16307, 'ultimatum': 16308, 'thrush': 16309, 'hscc': 16310, 'factual': 16311, 'ingest': 16312, 'abbi': 16313, 'fracturer': 16314, 'smasher': 16315, 'indispensable': 16316, 'fragmenter': 16317, 'lifeguarding': 16318, 'carcinogenic': 16319, 'teethmarks': 16320, 'battersby': 16321, 'minotaurs': 16322, 'tijuana': 16323, 'unplug': 16324, 'glob': 16325, 'scamper': 16326, 'inkjet': 16327, 'detestable': 16328, 'layla': 16329, 'hooch': 16330, 'touchstone': 16331, 'architecturally': 16332, 'cb': 16333, 'landlines': 16334, 'hammersmith': 16335, 'mot': 16336, 'rhead': 16337, 'climber': 16338, 'roseburg': 16339, 'teamlogan': 16340, 'seduction': 16341, 'headhunters': 16342, 'ordain': 16343, 'aloha': 16344, 'aina': 16345, 'barca': 16346, 'mongol': 16347, 'hellerman': 16348, 'weavers': 16349, 'indifference': 16350, 'severus': 16351, 'leash': 16352, 'loafers': 16353, 'immolation': 16354, 'jwoww': 16355, 'bane': 16356, 'emergencies': 16357, 'impregnable': 16358, 'misremember': 16359, 'obs': 16360, 'lattes': 16361, 'weightlift': 16362, 'cicadas': 16363, 'mdma': 16364, 'banquet': 16365, 'acnefree': 16366, 'property': 16367, 'mayfly': 16368, 'necessarily': 16369, 'manziel': 16370, 'puffer': 16371, 'giudice': 16372, 'willis': 16373, 'sitcoms': 16374, 'eia': 16375, 'factories': 16376, 'obstructionism': 16377, 'davanzo': 16378, 'batumi': 16379, 'activities': 16380, 'yousafzai': 16381, 'aleutian': 16382, 'rockford': 16383, 'hitless': 16384, 'safes': 16385, 'zeev': 16386, 'aram': 16387, 'starry': 16388, 'gershwin': 16389, 'philadelphians': 16390, 'boca': 16391, 'raton': 16392, 'statuettes': 16393, 'dowager': 16394, 'krispie': 16395, 'fletch': 16396, 'dong': 16397, 'anthropomorphic': 16398, 'giraffe': 16399, 'beachfront': 16400, 'romanticize': 16401, 'handgun': 16402, 'doxing': 16403, 'necessities': 16404, 'aquafina': 16405, 'entente': 16406, 'federally': 16407, 'wetlands': 16408, 'balsam': 16409, 'heffern': 16410, 'cw': 16411, 'backpackers': 16412, 'footnote': 16413, 'iphonefeatures': 16414, 'ames': 16415, 'cannsas': 16416, 'interpretations': 16417, 'bluth': 16418, 'mesquite': 16419, 'franchesca': 16420, 'intimately': 16421, 'payoff': 16422, 'inshallah': 16423, 'cuckold': 16424, 'garish': 16425, 'sportscenter': 16426, 'jakob': 16427, 'marcellus': 16428, 'feudalists': 16429, 'unregistered': 16430, 'wizened': 16431, 'sara': 16432, 'kerr': 16433, 'taxonomic': 16434, 'insomniacs': 16435, 'competitions': 16436, 'fatality': 16437, 'spruce': 16438, 'mao': 16439, 'visor': 16440, 'sweets': 16441, 'pointers': 16442, 'ramarley': 16443, 'unrequited': 16444, 'incoherently': 16445, 'teleportation': 16446, 'printable': 16447, 'procrastinators': 16448, 'recyclable': 16449, 'academic': 16450, 'wakeup': 16451, 'pliers': 16452, 'steinem': 16453, 'absolve': 16454, 'professionalism': 16455, 'traditionally': 16456, 'cretinous': 16457, 'reprobate': 16458, 'mantle': 16459, 'sabathia': 16460, 'bautista': 16461, 'cartman': 16462, 'kink': 16463, 'chit': 16464, 'pepperidge': 16465, 'milanos': 16466, 'pleshette': 16467, 'choppers': 16468, 'ensnare': 16469, 'kiev': 16470, 'dasha': 16471, 'spiderman': 16472, 'degrade': 16473, 'gt': 16474, 'kosher': 16475, 'unworkable': 16476, 'mustaches': 16477, 'anheuser': 16478, 'costliest': 16479, 'polygamy': 16480, 'memorialize': 16481, 'forcefield': 16482, 'hurtle': 16483, 'rumspringa': 16484, 'conversational': 16485, 'fabre': 16486, 'parasites': 16487, 'ab': 16488, 'schock': 16489, 'scrutinize': 16490, 'symptomatic': 16491, 'injustices': 16492, 'domhnall': 16493, 'gleeson': 16494, 'hux': 16495, 'ascend': 16496, 'bodyguards': 16497, 'deen': 16498, 'fenimore': 16499, 'gma': 16500, 'philippe': 16501, 'courtois': 16502, 'jian': 16503, 'ghomeshi': 16504, 'rightfully': 16505, 'novelists': 16506, 'monetary': 16507, 'strata': 16508, 'marlin': 16509, 'sodium': 16510, 'remorse': 16511, 'adon': 16512, 'slavin': 16513, 'mudslinging': 16514, 'swagger': 16515, 'chokeholds': 16516, 'spiritually': 16517, 'deferments': 16518, 'neolithic': 16519, 'gizmos': 16520, 'craftsman': 16521, 'starvation': 16522, 'zangief': 16523, 'seyfried': 16524, 'weave': 16525, 'noisily': 16526, 'grape': 16527, 'comedies': 16528, 'pryor': 16529, 'uppity': 16530, 'shortages': 16531, 'slager': 16532, 'grifters': 16533, 'groundwork': 16534, 'statuette': 16535, 'saucer': 16536, 'darken': 16537, 'paddy': 16538, 'arise': 16539, 'builders': 16540, 'filament': 16541, 'wallflower': 16542, 'evaluation': 16543, 'gummis': 16544, 'gerard': 16545, 'alessandrini': 16546, 'mccabe': 16547, 'requirements': 16548, 'byrd': 16549, 'inconceivable': 16550, 'unconsciousness': 16551, 'anesthesiologist': 16552, 'paychecks': 16553, 'dolly': 16554, 'parton': 16555, 'vaquita': 16556, 'porpoise': 16557, 'robbin': 16558, 'cobb': 16559, 'eighty': 16560, 'ferment': 16561, 'cheval': 16562, 'blanc': 16563, 'deliveryman': 16564, 'suppers': 16565, 'beetlejuice': 16566, 'trai': 16567, 'byers': 16568, 'thankfully': 16569, 'tensile': 16570, 'libel': 16571, 'jamaica': 16572, 'lbd': 16573, 'septuplets': 16574, 'milgram': 16575, 'jacaranda': 16576, 'mastercard': 16577, 'casualty': 16578, 'caress': 16579, 'homo': 16580, 'celbritans': 16581, 'separations': 16582, 'singular': 16583, 'televisa': 16584, 'vicente': 16585, 'electronica': 16586, 'fakebook': 16587, 'nylon': 16588, 'teamwork': 16589, 'implication': 16590, 'umbilical': 16591, 'frontrunners': 16592, 'slant': 16593, 'breuer': 16594, 'lubitz': 16595, 'stigmatize': 16596, 'wondrous': 16597, 'wurst': 16598, 'nuisance': 16599, 'nuance': 16600, 'plywood': 16601, 'microlender': 16602, 'spiders': 16603, 'shalit': 16604, 'garc': 16605, 'rquez': 16606, 'debtor': 16607, 'alderman': 16608, 'subwoofer': 16609, 'jonben': 16610, 'emmett': 16611, 'appropriation': 16612, 'disband': 16613, 'subhumanity': 16614, 'melo': 16615, 'genocidal': 16616, 'slaver': 16617, 'gabriella': 16618, 'rechargeable': 16619, 'conveniently': 16620, 'imitation': 16621, 'fixin': 16622, 'freedoming': 16623, 'nouns': 16624, 'downhill': 16625, 'wobble': 16626, 'redundancy': 16627, 'cyborg': 16628, 'tortilla': 16629, 'xenical': 16630, 'paxil': 16631, 'drixoral': 16632, 'lipitor': 16633, 'tavist': 16634, 'unfriendly': 16635, 'hanger': 16636, 'bedside': 16637, 'bloc': 16638, 'cilla': 16639, 'headliner': 16640, 'salamanders': 16641, 'barksdale': 16642, 'wizarding': 16643, 'diagon': 16644, 'alley': 16645, 'sobriety': 16646, 'umpire': 16647, 'dotard': 16648, 'bunt': 16649, 'slimy': 16650, 'webb': 16651, 'yolo': 16652, 'commence': 16653, 'subtext': 16654, 'tacos': 16655, 'paulson': 16656, 'bureaucratic': 16657, 'compilations': 16658, 'unisex': 16659, 'voris': 16660, 'maggie': 16661, 'bitsy': 16662, 'brainfood': 16663, 'plo': 16664, 'krippendorf': 16665, 'malawi': 16666, 'squid': 16667, 'cebu': 16668, 'senselessness': 16669, 'coy': 16670, 'ewww': 16671, 'bugnado': 16672, 'golem': 16673, 'hypothesis': 16674, 'wagner': 16675, 'congregation': 16676, 'equation': 16677, 'haugh': 16678, 'cowbell': 16679, 'richrath': 16680, 'reo': 16681, 'speedwagon': 16682, 'compile': 16683, 'shortlist': 16684, 'transsexual': 16685, 'amateur': 16686, 'chickadee': 16687, 'dues': 16688, 'asexually': 16689, 'reproduce': 16690, 'sponge': 16691, 'gondola': 16692, 'disconnect': 16693, 'kowalski': 16694, 'grisled': 16695, 'flail': 16696, 'shotguns': 16697, 'hanson': 16698, 'nambla': 16699, 'sentiments': 16700, 'yalie': 16701, 'lad': 16702, 'maxx': 16703, 'norma': 16704, 'figurine': 16705, 'nowadays': 16706, 'brinkley': 16707, 'rosamund': 16708, 'ravish': 16709, 'flyboy': 16710, 'talisman': 16711, 'faves': 16712, 'serch': 16713, 'taint': 16714, 'chemically': 16715, 'polarization': 16716, 'toke': 16717, 'durning': 16718, 'hock': 16719, 'carless': 16720, 'prematurity': 16721, 'randall': 16722, 'secede': 16723, 'randalia': 16724, 'dsl': 16725, 'gett': 16726, 'viviane': 16727, 'amsalem': 16728, 'sheepish': 16729, 'ecuador': 16730, 'unfold': 16731, 'gaffer': 16732, 'jpso': 16733, 'breastfed': 16734, 'flandemic': 16735, 'raciest': 16736, 'harward': 16737, 'crossword': 16738, 'glossip': 16739, 'mathematics': 16740, 'vogt': 16741, 'millisecond': 16742, 'jest': 16743, 'inhuman': 16744, 'reprehensibly': 16745, 'onrush': 16746, 'mics': 16747, 'cellist': 16748, 'judys': 16749, 'arsons': 16750, 'goalposts': 16751, 'djimon': 16752, 'hounsou': 16753, 'planetary': 16754, 'serbian': 16755, 'dade': 16756, 'admin': 16757, 'knack': 16758, 'druid': 16759, 'bastille': 16760, 'deserter': 16761, 'darius': 16762, 'rucker': 16763, 'gamecocks': 16764, 'rs': 16765, 'regurgitate': 16766, 'womb': 16767, 'funk': 16768, 'ponds': 16769, 'matte': 16770, 'sucker': 16771, 'ditka': 16772, 'hash': 16773, 'roudup': 16774, 'zee': 16775, 'zinfandel': 16776, 'malta': 16777, 'entries': 16778, 'sacagawea': 16779, 'lucasfilm': 16780, 'changers': 16781, 'pegida': 16782, 'bedbugs': 16783, 'imani': 16784, 'boyette': 16785, 'vitriol': 16786, 'eruption': 16787, 'undue': 16788, 'epidural': 16789, 'provocative': 16790, 'preakness': 16791, 'marcotte': 16792, 'benetton': 16793, 'fa': 16794, 'ade': 16795, 'gen': 16796, 'cynicism': 16797, 'illiteracy': 16798, 'npt': 16799, 'fetishists': 16800, 'mooc': 16801, 'ponytails': 16802, 'photoshopping': 16803, 'oilfields': 16804, 'earthenware': 16805, 'kirby': 16806, 'retaliate': 16807, 'reenergize': 16808, 'hunks': 16809, 'milkshakes': 16810, 'sneakiest': 16811, 'eurostar': 16812, 'sailboat': 16813, 'ewok': 16814, 'sisterhood': 16815, 'wgn': 16816, 'drywall': 16817, 'sza': 16818, 'supergirl': 16819, 'misogynistic': 16820, 'inclusions': 16821, 'brits': 16822, 'appeaser': 16823, 'billboards': 16824, 'panasonic': 16825, 'nah': 16826, 'sustainably': 16827, 'narcicyst': 16828, 'inclusivity': 16829, 'snapshots': 16830, 'deed': 16831, 'preorders': 16832, 'snazzy': 16833, 'feline': 16834, 'nightgown': 16835, 'wrongfully': 16836, 'mylanta': 16837, 'gorka': 16838, 'fleshlighthouse': 16839, 'texture': 16840, 'greenbuild': 16841, 'hearken': 16842, 'fernandez': 16843, 'chenoweth': 16844, 'estefan': 16845, 'webber': 16846, 'mcgorry': 16847, 'nipsey': 16848, 'couplets': 16849, 'reactors': 16850, 'botany': 16851, 'truthers': 16852, 'octopussy': 16853, 'jourdan': 16854, 'gonzalez': 16855, 'kielbasa': 16856, 'ingrain': 16857, 'sidetrack': 16858, 'rhea': 16859, 'maceris': 16860, 'skyline': 16861, 'katehi': 16862, 'hasan': 16863, 'minhaj': 16864, 'subjective': 16865, 'frapp': 16866, 'invocations': 16867, 'hammerhead': 16868, 'craziest': 16869, 'rosalynn': 16870, 'wyoming': 16871, 'galecki': 16872, 'whipple': 16873, 'dalit': 16874, 'abcs': 16875, 'ballplayers': 16876, 'rolex': 16877, 'hollande': 16878, 'valls': 16879, 'misdemeanors': 16880, 'softener': 16881, 'dominion': 16882, 'obligate': 16883, 'leotards': 16884, 'sociable': 16885, 'joyfully': 16886, 'putty': 16887, 'overstay': 16888, 'dollhouse': 16889, 'hairdo': 16890, 'darger': 16891, 'deign': 16892, 'wuhl': 16893, 'pollack': 16894, 'entity': 16895, 'sodomy': 16896, 'infertility': 16897, 'savannah': 16898, 'guthrie': 16899, 'conair': 16900, 'rezzed': 16901, 'squirt': 16902, 'redundant': 16903, 'profumi': 16904, 'lustful': 16905, 'sensually': 16906, 'unhook': 16907, 'clasp': 16908, 'ineptly': 16909, 'danica': 16910, 'roem': 16911, 'fairey': 16912, 'blatantly': 16913, 'demagogue': 16914, 'outgo': 16915, 'cleat': 16916, 'blackhawk': 16917, 'andie': 16918, 'macdowell': 16919, 'ashleigh': 16920, 'banfield': 16921, 'fergie': 16922, 'enslave': 16923, 'paunch': 16924, 'alphabetically': 16925, 'committers': 16926, 'synchronize': 16927, 'disco': 16928, 'coziest': 16929, 'fashionably': 16930, 'forebode': 16931, 'entrees': 16932, 'uterine': 16933, 'grimmie': 16934, 'carjackers': 16935, 'coms': 16936, 'pinocchio': 16937, 'maxwell': 16938, 'sridevi': 16939, 'unpledged': 16940, 'insignia': 16941, 'fresco': 16942, 'naturalize': 16943, 'outages': 16944, 'accusingly': 16945, 'android': 16946, 'forearm': 16947, 'circuitry': 16948, 'colonel': 16949, 'blazer': 16950, 'energi': 16951, 'dosage': 16952, 'pelt': 16953, 'unannounced': 16954, 'mentalist': 16955, 'coo': 16956, 'sociologists': 16957, 'hardier': 16958, 'litigation': 16959, 'zebra': 16960, 'signify': 16961, 'shellie': 16962, 'saffron': 16963, 'ridiculousexcusestostayhome': 16964, 'undesignated': 16965, 'bellhop': 16966, 'freshwater': 16967, 'deadlier': 16968, 'vigils': 16969, 'jaskoviak': 16970, 'pornstar': 16971, 'stepmother': 16972, 'yowl': 16973, 'kiwi': 16974, 'cliven': 16975, 'turners': 16976, 'stubborn': 16977, 'baklava': 16978, 'poopgangsta': 16979, 'ashraf': 16980, 'ghani': 16981, 'feelthebern': 16982, 'sunmine': 16983, 'headstone': 16984, 'newshour': 16985, 'thinkable': 16986, 'fixer': 16987, 'freyda': 16988, 'deeds': 16989, 'roma': 16990, 'nothingness': 16991, 'muffins': 16992, 'lobe': 16993, 'hem': 16994, 'torturous': 16995, 'prosecutorial': 16996, 'landrieu': 16997, 'scalpels': 16998, 'recoup': 16999, 'amongst': 17000, 'peruse': 17001, 'ineffectually': 17002, 'awesomely': 17003, 'aviva': 17004, 'metrosexuality': 17005, 'hardwired': 17006, 'batboy': 17007, 'newsom': 17008, 'degas': 17009, 'satisfaction': 17010, 'extramarital': 17011, 'eligible': 17012, 'gumbel': 17013, 'medicruelty': 17014, 'intricacies': 17015, 'vandross': 17016, 'ballsy': 17017, 'shiite': 17018, 'sharpest': 17019, 'lenient': 17020, 'cheeseburgers': 17021, 'arrieta': 17022, 'sherpas': 17023, 'cardiomyopathy': 17024, 'federation': 17025, 'uterus': 17026, 'presley': 17027, 'latinx': 17028, 'abysmally': 17029, 'materialism': 17030, 'prabal': 17031, 'gurung': 17032, 'earthlike': 17033, 'malleable': 17034, 'simpletons': 17035, 'sprinter': 17036, 'adria': 17037, 'cimino': 17038, 'jabba': 17039, 'hutt': 17040, 'underpants': 17041, 'mast': 17042, 'tolerant': 17043, 'anaheim': 17044, 'hawkeye': 17045, 'procession': 17046, 'richards': 17047, 'electro': 17048, 'undeterred': 17049, 'peruvian': 17050, 'knowledgeable': 17051, 'sewers': 17052, 'mixxxx': 17053, 'squi': 17054, 'bret': 17055, 'baier': 17056, 'hots': 17057, 'obstructionist': 17058, 'scifi': 17059, 'encyclopedic': 17060, 'handsomely': 17061, 'rockefeller': 17062, 'emptier': 17063, 'upsides': 17064, 'piketty': 17065, 'francais': 17066, 'marketable': 17067, 'congeniality': 17068, 'troglodyte': 17069, 'locally': 17070, 'benadryl': 17071, 'dart': 17072, 'unquenchable': 17073, 'paine': 17074, 'neocons': 17075, 'brink': 17076, 'everytown': 17077, 'flex': 17078, 'jumpers': 17079, 'grexit': 17080, 'informal': 17081, 'animosity': 17082, 'autocorrect': 17083, 'daylong': 17084, 'sanatoriums': 17085, 'hydropower': 17086, 'yogi': 17087, 'tormentor': 17088, 'haaz': 17089, 'sleiman': 17090, 'danish': 17091, 'lilliputian': 17092, 'repellant': 17093, 'gerstein': 17094, 'poncho': 17095, 'lightyear': 17096, 'mania': 17097, 'indira': 17098, 'breweries': 17099, 'mooch': 17100, 'ophthalmologist': 17101, 'badpicturemonday': 17102, 'insightful': 17103, 'vile': 17104, 'rohit': 17105, 'varma': 17106, 'morbid': 17107, 'stapleton': 17108, 'baskets': 17109, 'timelapse': 17110, 'lobsterman': 17111, 'assemblyman': 17112, 'discontent': 17113, 'kitty': 17114, 'transmasculine': 17115, 'okinawa': 17116, 'gourd': 17117, 'bumpy': 17118, 'yearn': 17119, 'fret': 17120, 'cashew': 17121, 'verma': 17122, 'infringement': 17123, 'colorism': 17124, 'reconstruction': 17125, 'cougars': 17126, 'tangle': 17127, 'drudge': 17128, 'overburden': 17129, 'rhymezone': 17130, 'kaley': 17131, 'cuoco': 17132, 'zion': 17133, 'watchdogs': 17134, 'cambodia': 17135, 'reedsburg': 17136, 'illegibly': 17137, 'episcopalians': 17138, 'breadwinner': 17139, 'mommies': 17140, 'mcommerce': 17141, 'shamefaced': 17142, 'weezer': 17143, 'cherubs': 17144, 'basest': 17145, 'tabasco': 17146, 'cryosleep': 17147, 'fuji': 17148, 'mains': 17149, 'indivisible': 17150, 'euphemism': 17151, 'underprotective': 17152, 'foxx': 17153, 'domesticate': 17154, 'pathological': 17155, 'perps': 17156, 'velma': 17157, 'makeshift': 17158, 'viewpoint': 17159, 'kip': 17160, 'ennis': 17161, 'zenefits': 17162, 'stairwells': 17163, 'telemarketer': 17164, 'awash': 17165, 'gere': 17166, 'regrow': 17167, 'waken': 17168, 'proctoscope': 17169, 'dissenters': 17170, 'awardee': 17171, 'nic': 17172, 'fondest': 17173, 'febreze': 17174, 'unpleasant': 17175, 'summertime': 17176, 'disrobe': 17177, 'peebles': 17178, 'wilford': 17179, 'brimley': 17180, 'tringle': 17181, 'thirty': 17182, 'preoccupation': 17183, 'upstate': 17184, 'reenergized': 17185, 'wallets': 17186, 'prepay': 17187, 'debit': 17188, 'etc': 17189, 'justifiable': 17190, 'anal': 17191, 'paintball': 17192, 'nite': 17193, 'sac': 17194, 'plasticware': 17195, 'payroll': 17196, 'surpass': 17197, 'offline': 17198, 'mugger': 17199, 'lizard': 17200, 'pauly': 17201, 'renegotiate': 17202, 'philomena': 17203, 'manor': 17204, 'unregulated': 17205, 'madrassa': 17206, 'migraines': 17207, 'jumpshot': 17208, 'odorless': 17209, 'fermilab': 17210, 'plunger': 17211, 'collapsible': 17212, 'caesar': 17213, 'portent': 17214, 'gnarl': 17215, 'overtipper': 17216, 'ths': 17217, 'hypnotize': 17218, 'erin': 17219, 'burnett': 17220, 'sweetheart': 17221, 'deets': 17222, 'herointown': 17223, 'sharpie': 17224, 'hysterectomy': 17225, 'biology': 17226, 'dissect': 17227, 'hallucinatory': 17228, 'doorbell': 17229, 'sabra': 17230, 'cedar': 17231, 'calculation': 17232, 'outlook': 17233, 'exorcise': 17234, 'swoon': 17235, 'superiors': 17236, 'plop': 17237, 'zoolander': 17238, 'baghdadi': 17239, 'breakdancing': 17240, 'creflo': 17241, 'fatherless': 17242, 'emeril': 17243, 'bams': 17244, 'groupie': 17245, 'individuality': 17246, 'anchorman': 17247, 'chirp': 17248, 'ia': 17249, 'zaire': 17250, 'overprescribe': 17251, 'narcotics': 17252, 'smithereen': 17253, 'gravestones': 17254, 'benchmark': 17255, 'jody': 17256, 'hice': 17257, 'dious': 17258, 'kobani': 17259, 'valyrian': 17260, 'omran': 17261, 'daqneesh': 17262, 'awry': 17263, 'casualwear': 17264, 'waterboarded': 17265, 'indirectly': 17266, 'yates': 17267, 'grandpas': 17268, 'marvelous': 17269, 'cellphones': 17270, 'compilation': 17271, 'lyfe': 17272, 'hormone': 17273, 'servicemembers': 17274, 'theological': 17275, 'seduce': 17276, 'blackmail': 17277, 'wand': 17278, 'superficial': 17279, 'gorillas': 17280, 'frumpy': 17281, 'exorcism': 17282, 'rollback': 17283, 'stiles': 17284, 'preston': 17285, 'factoids': 17286, 'eraserhead': 17287, 'jiggle': 17288, 'leann': 17289, 'waiver': 17290, 'shaft': 17291, 'muffuletta': 17292, 'noncitizens': 17293, 'viall': 17294, 'iman': 17295, 'shumpert': 17296, 'misogynoir': 17297, 'kickin': 17298, 'requirement': 17299, 'artweek': 17300, 'solicitor': 17301, 'burwell': 17302, 'affirm': 17303, 'magpie': 17304, 'atms': 17305, 'sweepers': 17306, 'complexity': 17307, 'escalators': 17308, 'mousy': 17309, 'sexpot': 17310, 'infestation': 17311, 'claude': 17312, 'brinegar': 17313, 'brianna': 17314, 'brochu': 17315, 'michaela': 17316, 'desantis': 17317, 'heathcliff': 17318, 'caricaturist': 17319, 'brittle': 17320, 'jewess': 17321, 'clairs': 17322, 'monopolize': 17323, 'zaatari': 17324, 'ossify': 17325, 'nativist': 17326, 'ream': 17327, 'corduroy': 17328, 'trumpers': 17329, 'skullfucking': 17330, 'asexuals': 17331, 'casinos': 17332, 'cog': 17333, 'logitech': 17334, 'typists': 17335, 'squirrels': 17336, 'isla': 17337, 'earphone': 17338, 'probiotics': 17339, 'prebiotics': 17340, 'oswald': 17341, 'etna': 17342, 'boardwalk': 17343, 'chumps': 17344, 'caldwell': 17345, 'oscarssowhite': 17346, 'modcloth': 17347, 'boilermakers': 17348, 'geller': 17349, 'zimbabwe': 17350, 'katif': 17351, 'disengagement': 17352, 'fritos': 17353, 'chiquita': 17354, 'glaxosmithkline': 17355, 'chastain': 17356, 'paralympic': 17357, 'triathlon': 17358, 'queso': 17359, 'nfc': 17360, 'doofus': 17361, 'weekley': 17362, 'gladwell': 17363, 'foretell': 17364, 'wales': 17365, 'roofer': 17366, 'badmouth': 17367, 'conditioners': 17368, 'unpauses': 17369, 'atari': 17370, 'sherpa': 17371, 'bradbury': 17372, 'kindle': 17373, 'faucets': 17374, 'bassett': 17375, 'petticoat': 17376, 'danishes': 17377, 'poundstone': 17378, 'gargoyle': 17379, 'arson': 17380, 'lalanne': 17381, 'subtitle': 17382, 'mondays': 17383, 'gimmicky': 17384, 'deus': 17385, 'machina': 17386, 'bonobo': 17387, 'prophecies': 17388, 'amorphous': 17389, 'indefinable': 17390, 'blowhole': 17391, 'extroverted': 17392, 'sicily': 17393, 'naples': 17394, 'deviation': 17395, 'statistician': 17396, 'yorkshire': 17397, 'monogrammed': 17398, 'favorites': 17399, 'gruff': 17400, 'newscasts': 17401, 'squawk': 17402, 'catchy': 17403, 'gregorian': 17404, 'misbuttoned': 17405, 'aegean': 17406, 'comet': 17407, 'philae': 17408, 'mourdock': 17409, 'bjorn': 17410, 'multiples': 17411, 'meetup': 17412, 'nutcracker': 17413, 'ocelot': 17414, 'whitefish': 17415, 'pritzker': 17416, 'sleepiness': 17417, 'humpbacked': 17418, 'fib': 17419, 'lemony': 17420, 'snicket': 17421, 'wesleyan': 17422, 'sarajevo': 17423, 'debra': 17424, 'dokken': 17425, 'molotov': 17426, 'adhd': 17427, 'emmerich': 17428, 'continually': 17429, 'nondiscrimination': 17430, 'benson': 17431, 'lululemon': 17432, 'insulate': 17433, 'kensington': 17434, 'spearmint': 17435, 'meanwhile': 17436, 'naval': 17437, 'chakra': 17438, 'fourths': 17439, 'evergreen': 17440, 'earthly': 17441, 'redditors': 17442, 'reimagine': 17443, 'backyards': 17444, 'fresca': 17445, 'boxers': 17446, 'versa': 17447, 'salivate': 17448, 'eugenics': 17449, 'colton': 17450, 'hydroponics': 17451, 'crawleys': 17452, 'succulent': 17453, 'brotherhood': 17454, 'unmarried': 17455, 'strum': 17456, 'bracketological': 17457, 'examination': 17458, 'aykroyds': 17459, 'loathe': 17460, 'tally': 17461, 'recut': 17462, 'orioles': 17463, 'rockatansky': 17464, 'nux': 17465, 'paralympian': 17466, 'turds': 17467, 'chainsaw': 17468, 'policewoman': 17469, 'houdini': 17470, 'iovine': 17471, 'sequoia': 17472, 'allegories': 17473, 'gin': 17474, 'timbaland': 17475, 'relinquish': 17476, 'crenna': 17477, 'sydney': 17478, 'rinky': 17479, 'dink': 17480, 'elvis': 17481, 'costello': 17482, 'penthouse': 17483, 'sterilize': 17484, 'pujols': 17485, 'lions': 17486, 'zebras': 17487, 'masse': 17488, 'savanna': 17489, 'idahoan': 17490, 'jennie': 17491, 'staircase': 17492, 'munster': 17493, 'inappropriately': 17494, 'deject': 17495, 'korra': 17496, 'belligerent': 17497, 'melee': 17498, 'loiterer': 17499, 'eff': 17500, 'beacon': 17501, 'albanians': 17502, 'infallibility': 17503, 'overture': 17504, 'uneven': 17505, 'realistically': 17506, 'boyband': 17507, 'protectionism': 17508, 'burtnick': 17509, 'cig': 17510, 'vapers': 17511, 'outset': 17512, 'segue': 17513, 'mixup': 17514, 'indicative': 17515, 'linehan': 17516, 'libs': 17517, 'morals': 17518, 'boyega': 17519, 'misophonia': 17520, 'aatish': 17521, 'taseer': 17522, 'sanskrit': 17523, 'aumf': 17524, 'humanities': 17525, 'unheeded': 17526, 'troian': 17527, 'bellisario': 17528, 'introversion': 17529, 'lag': 17530, 'hobbit': 17531, 'tilsen': 17532, 'reservation': 17533, 'puppets': 17534, 'deans': 17535, 'fitbit': 17536, 'inactive': 17537, 'beekeeping': 17538, 'handily': 17539, 'blink': 17540, 'nom': 17541, 'cormac': 17542, 'handcar': 17543, 'childrens': 17544, 'constable': 17545, 'gravedigger': 17546, 'divergent': 17547, 'bulletproof': 17548, 'strom': 17549, 'thurmond': 17550, 'presenters': 17551, 'buncha': 17552, 'brine': 17553, 'continuously': 17554, 'africans': 17555, 'soapy': 17556, 'hotspots': 17557, 'commitments': 17558, 'whoisdsharp': 17559, 'foo': 17560, 'muster': 17561, 'stacy': 17562, 'ruiz': 17563, 'incense': 17564, 'ignorant': 17565, 'boor': 17566, 'creak': 17567, 'watertown': 17568, 'jurisprudence': 17569, 'unfunny': 17570, 'palmolive': 17571, 'wozniak': 17572, 'moneypenny': 17573, 'monthlong': 17574, 'cosmos': 17575, 'ghouta': 17576, 'peninsula': 17577, 'cornfield': 17578, 'evo': 17579, 'es': 17580, 'brownface': 17581, 'restorative': 17582, 'remnick': 17583, 'mork': 17584, 'grubhub': 17585, 'wormhole': 17586, 'moneymaking': 17587, 'artiste': 17588, 'moleskine': 17589, 'knobby': 17590, 'fours': 17591, 'sunderland': 17592, 'concoct': 17593, 'tinker': 17594, 'diddy': 17595, 'skillingsbolle': 17596, 'metlife': 17597, 'implementation': 17598, 'marseille': 17599, 'charismatic': 17600, 'lichen': 17601, 'peacekeepers': 17602, 'bosnia': 17603, 'burkina': 17604, 'faso': 17605, 'equine': 17606, 'tweetless': 17607, 'nyad': 17608, 'doggie': 17609, 'ruff': 17610, 'dubsmash': 17611, 'ladybug': 17612, 'dontcha': 17613, 'secretarian': 17614, 'receptionists': 17615, 'dolce': 17616, 'gabbana': 17617, 'hijabs': 17618, 'abayas': 17619, 'serif': 17620, 'bogot': 17621, 'hoard': 17622, 'lawful': 17623, 'securities': 17624, 'tenacity': 17625, 'alyson': 17626, 'bikers': 17627, 'okie': 17628, 'crullers': 17629, 'islamophobe': 17630, 'indiscriminately': 17631, 'evacuees': 17632, 'mercurial': 17633, 'suffrage': 17634, 'generational': 17635, 'bulleted': 17636, 'dasani': 17637, 'profitability': 17638, 'evansville': 17639, 'chamillionaire': 17640, 'toole': 17641, 'tremendous': 17642, 'hearse': 17643, 'schulz': 17644, 'easel': 17645, 'coffman': 17646, 'tancredo': 17647, 'enoch': 17648, 'weatherman': 17649, 'hub': 17650, 'yauch': 17651, 'tibet': 17652, 'rezoned': 17653, 'thicks': 17654, 'seatmates': 17655, 'relabeled': 17656, 'offhand': 17657, 'deity': 17658, 'uninvited': 17659, 'blizzards': 17660, 'margot': 17661, 'unlucky': 17662, 'implicit': 17663, 'tug': 17664, 'beau': 17665, 'mush': 17666, 'intrinsic': 17667, 'kafka': 17668, 'insoles': 17669, 'carpenter': 17670, 'ps': 17671, 'valiant': 17672, 'sisi': 17673, 'ordinance': 17674, 'crosby': 17675, 'dwarven': 17676, 'infallible': 17677, 'dadlife': 17678, 'randstad': 17679, 'gandalf': 17680, 'aby': 17681, 'renoir': 17682, 'coronary': 17683, 'bypass': 17684, 'zanjeer': 17685, 'babysitters': 17686, 'knives': 17687, 'nortons': 17688, 'flippin': 17689, 'hyslop': 17690, 'kisser': 17691, 'cancers': 17692, 'curdle': 17693, 'komodo': 17694, 'skyfall': 17695, 'materialize': 17696, 'psst': 17697, 'competitiveness': 17698, 'livestreaming': 17699, 'riaa': 17700, 'bombie': 17701, 'attachment': 17702, 'negligent': 17703, 'sloppily': 17704, 'harshest': 17705, 'workweek': 17706, 'jalape': 17707, 'medically': 17708, 'disastrously': 17709, 'orcs': 17710, 'hony': 17711, 'sauron': 17712, 'iud': 17713, 'celery': 17714, 'hookup': 17715, 'ministry': 17716, 'walt': 17717, 'weasley': 17718, 'spectral': 17719, 'tattered': 17720, 'leggings': 17721, 'docile': 17722, 'puffins': 17723, 'devolve': 17724, 'shamble': 17725, 'satans': 17726, 'coe': 17727, 'grandparenting': 17728, 'lizards': 17729, 'bobsledder': 17730, 'nadezhda': 17731, 'sergeeva': 17732, 'tove': 17733, 'litany': 17734, 'boosters': 17735, 'liqui': 17736, 'fruity': 17737, 'thinker': 17738, 'clayton': 17739, 'extradite': 17740, 'marten': 17741, 'ideology': 17742, 'tilda': 17743, 'swinton': 17744, 'screwdriver': 17745, 'plaything': 17746, 'uncaged': 17747, 'clout': 17748, 'evaporate': 17749, 'extensively': 17750, 'lourd': 17751, 'hur': 17752, 'helberg': 17753, 'guild': 17754, 'haddad': 17755, 'sudafed': 17756, 'congestion': 17757, 'floorboards': 17758, 'wretched': 17759, 'frailty': 17760, 'impermanence': 17761, 'backlog': 17762, 'hormones': 17763, 'perish': 17764, 'tempest': 17765, 'songwriters': 17766, 'tantaros': 17767, 'nozzles': 17768, 'orifices': 17769, 'matterhorn': 17770, 'unhappier': 17771, 'categorization': 17772, 'domenici': 17773, 'wagons': 17774, 'oxycontin': 17775, 'wooly': 17776, 'mammoth': 17777, 'meekly': 17778, 'iroquois': 17779, 'multitask': 17780, 'foreplay': 17781, 'assail': 17782, 'edict': 17783, 'carnegie': 17784, 'guggenheim': 17785, 'forgery': 17786, 'ouster': 17787, 'laughable': 17788, 'tragicomic': 17789, 'epiphanies': 17790, 'undercurrent': 17791, 'conservatism': 17792, 'handjob': 17793, 'sanitizer': 17794, 'freelance': 17795, 'gillespie': 17796, 'brownies': 17797, 'minis': 17798, 'slaughterhouse': 17799, 'headphone': 17800, 'synesthesia': 17801, 'slather': 17802, 'astrology': 17803, 'bhangra': 17804, 'shamers': 17805, 'stuporous': 17806, 'calculators': 17807, 'chipmunks': 17808, 'contradiction': 17809, 'refinance': 17810, 'cesarean': 17811, 'spratlys': 17812, 'angelo': 17813, 'surfbort': 17814, 'seethe': 17815, 'beginners': 17816, 'diligently': 17817, 'toothpick': 17818, 'schlubby': 17819, 'hydra': 17820, 'pwc': 17821, 'oncologist': 17822, 'nighy': 17823, 'quarrel': 17824, 'jumanji': 17825, 'unnecessarily': 17826, 'ulysses': 17827, 'trimmer': 17828, 'hedgehogs': 17829, 'isolation': 17830, 'roald': 17831, 'dahl': 17832, 'midtown': 17833, 'repairmen': 17834, 'buyouts': 17835, 'dreamlike': 17836, 'originate': 17837, 'unwed': 17838, 'ponzi': 17839, 'flo': 17840, 'muniz': 17841, 'amateurism': 17842, 'usps': 17843, 'consolidation': 17844, 'mewtwo': 17845, 'hyperactive': 17846, 'tampax': 17847, 'raisins': 17848, 'freakshow': 17849, 'yep': 17850, 'mysteriously': 17851, 'antonoff': 17852, 'impish': 17853, 'brit': 17854, 'hutcherson': 17855, 'revulsion': 17856, 'appointments': 17857, 'heartburn': 17858, 'preconceptions': 17859, 'expos': 17860, 'treaty': 17861, 'kyoto': 17862, 'alderson': 17863, 'stoners': 17864, 'iceman': 17865, 'firefly': 17866, 'junkies': 17867, 'buttocks': 17868, 'undulate': 17869, 'hypnotically': 17870, 'deserters': 17871, 'sinfully': 17872, 'worldly': 17873, 'vices': 17874, 'reestablish': 17875, 'unsupervised': 17876, 'commas': 17877, 'cunningly': 17878, 'sprain': 17879, 'storkholders': 17880, 'machinery': 17881, 'bearable': 17882, 'belize': 17883, 'ripa': 17884, 'readjustments': 17885, 'favorable': 17886, 'creations': 17887, 'heinous': 17888, 'barstool': 17889, 'lac': 17890, 'megantic': 17891, 'smoky': 17892, 'merv': 17893, 'disprove': 17894, 'eulogizer': 17895, 'legit': 17896, 'welterweight': 17897, 'mcpherson': 17898, 'bossy': 17899, 'subtember': 17900, 'refry': 17901, 'aunts': 17902, 'promiscuous': 17903, 'unlv': 17904, 'insatiable': 17905, 'droplet': 17906, 'windowpane': 17907, 'smallpox': 17908, 'vials': 17909, 'bloodshed': 17910, 'presentable': 17911, 'homosexualist': 17912, 'anew': 17913, 'vespucci': 17914, 'puttanesca': 17915, 'arrabiata': 17916, 'breslin': 17917, 'bocce': 17918, 'holcomb': 17919, 'instruction': 17920, 'halen': 17921, 'rhody': 17922, 'audiotapes': 17923, 'conclusively': 17924, 'underpay': 17925, 'snarl': 17926, 'joey': 17927, 'lens': 17928, 'goode': 17929, 'laos': 17930, 'undetonated': 17931, 'dud': 17932, 'jurgen': 17933, 'klinsmann': 17934, 'sweetie': 17935, 'stoudemire': 17936, 'discoveries': 17937, 'sumo': 17938, 'salamander': 17939, 'brigade': 17940, 'geddes': 17941, 'bracelets': 17942, 'ayesha': 17943, 'incubator': 17944, 'performative': 17945, 'wokeness': 17946, 'connector': 17947, 'mensch': 17948, 'immense': 17949, 'automation': 17950, 'fete': 17951, 'deemphasize': 17952, 'motivations': 17953, 'queerbaiting': 17954, 'festivus': 17955, 'rumple': 17956, 'polos': 17957, 'battlebots': 17958, 'cpu': 17959, 'comp': 17960, 'freeheld': 17961, 'exclusionary': 17962, 'manpower': 17963, 'skyla': 17964, 'delist': 17965, 'graters': 17966, 'renaissance': 17967, 'whaboom': 17968, 'correspond': 17969, 'slab': 17970, 'induction': 17971, 'khadr': 17972, 'tulsa': 17973, 'monaghan': 17974, 'allude': 17975, 'beefy': 17976, 'romania': 17977, 'occidental': 17978, 'reza': 17979, 'aslan': 17980, 'revitalise': 17981, 'paulo': 17982, 'raze': 17983, 'industrious': 17984, 'elites': 17985, 'coleman': 17986, 'incumbents': 17987, 'irregularities': 17988, 'barefoot': 17989, 'thoughtfully': 17990, 'globs': 17991, 'fisheries': 17992, 'chinos': 17993, 'impersonal': 17994, 'queerness': 17995, 'flinch': 17996, 'attentively': 17997, 'cuteness': 17998, 'shipments': 17999, 'stout': 18000, 'cardamom': 18001, 'indigo': 18002, 'barbaric': 18003, 'kucinich': 18004, 'gridiron': 18005, 'wpa': 18006, 'disassemble': 18007, 'reassemble': 18008, 'sarin': 18009, 'bernice': 18010, 'salah': 18011, 'abdeslam': 18012, 'exterior': 18013, 'resentful': 18014, 'mccullen': 18015, 'facade': 18016, 'folksy': 18017, 'detection': 18018, 'brees': 18019, 'legeno': 18020, 'avildsen': 18021, 'chum': 18022, 'printers': 18023, 'galore': 18024, 'punctuation': 18025, 'implications': 18026, 'truffles': 18027, 'mers': 18028, 'inconsistency': 18029, 'banter': 18030, 'prejudicial': 18031, 'civics': 18032, 'yam': 18033, 'filler': 18034, 'smudge': 18035, 'breadstick': 18036, 'estrogen': 18037, 'restock': 18038, 'rum': 18039, 'simulator': 18040, 'inebriate': 18041, 'cocoa': 18042, 'hagel': 18043, 'gothamist': 18044, 'dnainfo': 18045, 'acupuncture': 18046, 'seatbelts': 18047, 'checkup': 18048, 'richly': 18049, 'mansplained': 18050, 'birchbox': 18051, 'customize': 18052, 'quaid': 18053, 'miraculous': 18054, 'gumption': 18055, 'metamorphosis': 18056, 'dante': 18057, 'virgil': 18058, 'foremost': 18059, 'consistently': 18060, 'administer': 18061, 'foreshadow': 18062, 'galleries': 18063, 'defecate': 18064, 'samsonite': 18065, 'halloweiner': 18066, 'frankfest': 18067, 'jackhammer': 18068, 'parasitic': 18069, 'disregard': 18070, 'sfmoma': 18071, 'honcho': 18072, 'rewinds': 18073, 'trampoline': 18074, 'netherlands': 18075, 'gorsky': 18076, 'windsor': 18077, 'aground': 18078, 'epcot': 18079, 'almond': 18080, 'stylin': 18081, 'aline': 18082, 'kominsky': 18083, 'abject': 18084, 'nearest': 18085, 'definitively': 18086, 'somers': 18087, 'thighmaster': 18088, 'carefree': 18089, 'frown': 18090, 'mummenschanz': 18091, 'hilaria': 18092, 'townsfolk': 18093, 'incarnation': 18094, 'gregory': 18095, 'lawler': 18096, 'peripheral': 18097, 'kale': 18098, 'furrow': 18099, 'brow': 18100, 'emotionless': 18101, 'dreyfuss': 18102, 'lahood': 18103, 'munch': 18104, 'crunchiness': 18105, 'munchability': 18106, 'footy': 18107, 'mcfooty': 18108, 'bloodless': 18109, 'stuyvesant': 18110, 'mornin': 18111, 'carli': 18112, 'irresistible': 18113, 'matchmaker': 18114, 'teamnocancer': 18115, 'denominational': 18116, 'faiths': 18117, 'although': 18118, 'thunderbirds': 18119, 'memorandum': 18120, 'nu': 18121, 'kashkari': 18122, 'gourmet': 18123, 'foodie': 18124, 'dough': 18125, 'vocation': 18126, 'bundlers': 18127, 'biathlon': 18128, 'outsiders': 18129, 'mediums': 18130, 'frauds': 18131, 'posh': 18132, 'invitations': 18133, 'photographers': 18134, 'sanitation': 18135, 'harpies': 18136, 'crostini': 18137, 'walnuts': 18138, 'biomedical': 18139, 'munn': 18140, 'accelerators': 18141, 'slappy': 18142, 'bib': 18143, 'ragtag': 18144, 'pointz': 18145, 'condos': 18146, 'motorcyclists': 18147, 'thicke': 18148, 'vedder': 18149, 'demonstrators': 18150, 'homunculus': 18151, 'raider': 18152, 'maleness': 18153, 'grotesquely': 18154, 'ozzfest': 18155, 'boyhood': 18156, 'nolan': 18157, 'outbid': 18158, 'flog': 18159, 'cosmo': 18160, 'ronson': 18161, 'scoliosis': 18162, 'jackals': 18163, 'thang': 18164, 'strang': 18165, 'organizational': 18166, 'sutherland': 18167, 'stairwell': 18168, 'optimal': 18169, 'zoom': 18170, 'alohahuffpost': 18171, 'stimulate': 18172, 'medicate': 18173, 'mayhew': 18174, 'libbing': 18175, 'bs': 18176, 'chuy': 18177, 'straits': 18178, 'pankaj': 18179, 'mishra': 18180, 'planters': 18181, 'houseplants': 18182, 'townsperson': 18183, 'tronc': 18184, 'levinsohn': 18185, 'jil': 18186, 'snowboarder': 18187, 'paladino': 18188, 'pagans': 18189, 'buoyant': 18190, 'shopoholism': 18191, 'shoposauruses': 18192, 'mariani': 18193, 'schiller': 18194, 'lucy': 18195, 'grapes': 18196, 'partisanship': 18197, 'transnational': 18198, 'flursday': 18199, 'dekkers': 18200, 'individualize': 18201, 'derulo': 18202, 'murky': 18203, 'charth': 18204, 'necessity': 18205, 'passively': 18206, 'paragliding': 18207, 'sincerity': 18208, 'neptune': 18209, 'shitload': 18210, 'sketchbook': 18211, 'gellar': 18212, 'buffy': 18213, 'trillions': 18214, 'derivatives': 18215, 'ruh': 18216, 'roh': 18217, 'thresholds': 18218, 'exhaustion': 18219, 'techniques': 18220, 'weinsteins': 18221, 'farc': 18222, 'sullen': 18223, 'majestically': 18224, 'mindanao': 18225, 'iowans': 18226, 'saldiva': 18227, 'touchdown': 18228, 'seedy': 18229, 'allay': 18230, 'californians': 18231, 'connie': 18232, 'britton': 18233, 'adventists': 18234, 'ordination': 18235, 'citations': 18236, 'motorists': 18237, 'dont': 18238, 'moronic': 18239, 'mailroom': 18240, 'metz': 18241, 'blissed': 18242, 'hemp': 18243, 'remnant': 18244, 'hm': 18245, 'consuls': 18246, 'ewen': 18247, 'ascetic': 18248, 'tollbooth': 18249, 'reprieve': 18250, 'cameltoe': 18251, 'occupants': 18252, 'unhyphenated': 18253, 'dermatologist': 18254, 'dolores': 18255, 'huerta': 18256, 'newcomers': 18257, 'ncis': 18258, 'noisy': 18259, 'carolyn': 18260, 'maloney': 18261, 'fads': 18262, 'herd': 18263, 'odorite': 18264, 'craftmatic': 18265, 'adjustable': 18266, 'tonto': 18267, 'unclaimed': 18268, 'fidelity': 18269, 'seabed': 18270, 'juarez': 18271, 'boudoir': 18272, 'deloitte': 18273, 'accountant': 18274, 'abomination': 18275, 'winterize': 18276, 'alana': 18277, 'embarrassingly': 18278, 'trumphair': 18279, 'dreamer': 18280, 'asean': 18281, 'hummingbirds': 18282, 'incubators': 18283, 'playboys': 18284, 'slickest': 18285, 'romper': 18286, 'exclusivity': 18287, 'felon': 18288, 'thorpe': 18289, 'wheaton': 18290, 'unaffordable': 18291, 'mi': 18292, 'ville': 18293, 'taker': 18294, 'crip': 18295, 'krouse': 18296, 'rosenthal': 18297, 'vestiges': 18298, 'huggers': 18299, 'xmasgiftsfromtrump': 18300, 'rsvps': 18301, 'swanson': 18302, 'esque': 18303, 'princesses': 18304, 'untoward': 18305, 'astronauts': 18306, 'instagrammed': 18307, 'dime': 18308, 'criss': 18309, 'mindfreak': 18310, 'lowly': 18311, 'valadao': 18312, 'tk': 18313, 'blackwater': 18314, 'commonwealth': 18315, 'tenacious': 18316, 'learner': 18317, 'grandsons': 18318, 'syrups': 18319, 'convincingly': 18320, 'mack': 18321, 'hardliners': 18322, 'pseudonym': 18323, 'condescendingly': 18324, 'katt': 18325, 'sabatino': 18326, 'nils': 18327, 'hognestad': 18328, 'hutsell': 18329, 'caveats': 18330, 'hydrogen': 18331, 'tenenbaums': 18332, 'hopper': 18333, 'seminary': 18334, 'pamphlets': 18335, 'tylenol': 18336, 'infraction': 18337, 'yanni': 18338, 'recollection': 18339, 'gentrified': 18340, 'transfusion': 18341, 'pooping': 18342, 'lenses': 18343, 'builder': 18344, 'overuse': 18345, 'cleaners': 18346, 'superstains': 18347, 'luminaries': 18348, 'asthmatic': 18349, 'asthmatics': 18350, 'uzbekistan': 18351, 'undeniable': 18352, 'ericson': 18353, 'ark': 18354, 'jaipur': 18355, 'tryst': 18356, 'hamburg': 18357, 'boggs': 18358, 'auger': 18359, 'utterance': 18360, 'stipple': 18361, 'confiscate': 18362, 'nosebleeds': 18363, 'intensive': 18364, 'touchdowns': 18365, 'nomsense': 18366, 'charger': 18367, 'enabler': 18368, 'hendricks': 18369, 'vocalese': 18370, 'tressel': 18371, 'pavel': 18372, 'durov': 18373, 'biodegradable': 18374, 'ecstasy': 18375, 'despair': 18376, 'garrote': 18377, 'interstate': 18378, 'terabytes': 18379, 'womenboycotttwitter': 18380, 'omission': 18381, 'scandalous': 18382, 'modernization': 18383, 'skee': 18384, 'comrade': 18385, 'lutheran': 18386, 'monroee': 18387, 'dracula': 18388, 'corrosion': 18389, 'vandana': 18390, 'shiva': 18391, 'indifferent': 18392, 'sardinian': 18393, 'cove': 18394, 'anspach': 18395, 'transcanada': 18396, 'appendix': 18397, 'stillborn': 18398, 'nics': 18399, 'reciprocity': 18400, 'navratri': 18401, 'hindu': 18402, 'jeffords': 18403, 'afterschool': 18404, 'pollen': 18405, 'greenhouse': 18406, 'luge': 18407, 'brokaw': 18408, 'reinvest': 18409, 'economies': 18410, 'transgenderism': 18411, 'bayer': 18412, 'unfettered': 18413, 'whore': 18414, 'messenger': 18415, 'lynx': 18416, 'neat': 18417, 'clickbait': 18418, 'tubby': 18419, 'nope': 18420, 'mccrazy': 18421, 'sufficiency': 18422, 'nph': 18423, 'radcliffe': 18424, 'immensity': 18425, 'lint': 18426, 'cardigan': 18427, 'miter': 18428, 'faceshield': 18429, 'brookstone': 18430, 'mewesyria': 18431, 'prism': 18432, 'nonsensical': 18433, 'anglican': 18434, 'misinterpret': 18435, 'sarcasm': 18436, 'miscalculation': 18437, 'dendy': 18438, 'fritter': 18439, 'bayh': 18440, 'modernize': 18441, 'categories': 18442, 'torrential': 18443, 'decisive': 18444, 'beachgoers': 18445, 'bentley': 18446, 'byron': 18447, 'initiatives': 18448, 'dacamented': 18449, 'katsuya': 18450, 'brentwood': 18451, 'whisk': 18452, 'exterminator': 18453, 'jost': 18454, 'sage': 18455, 'hatala': 18456, 'larsen': 18457, 'sharpton': 18458, 'darth': 18459, 'batgirl': 18460, 'suffuse': 18461, 'undertones': 18462, 'levee': 18463, 'kepler': 18464, 'corgi': 18465, 'kiddos': 18466, 'detergent': 18467, 'reaganism': 18468, 'midflight': 18469, 'haegue': 18470, 'leeum': 18471, 'throttle': 18472, 'lameness': 18473, 'mapmaker': 18474, 'valueville': 18475, 'airman': 18476, 'cosme': 18477, 'easygoing': 18478, 'overclassification': 18479, 'bain': 18480, 'loaf': 18481, 'elie': 18482, 'wiesel': 18483, 'menforchoice': 18484, 'cornerback': 18485, 'jk': 18486, 'batshitzania': 18487, 'sixty': 18488, 'opium': 18489, 'tums': 18490, 'feisty': 18491, 'schnook': 18492, 'refocus': 18493, 'lookin': 18494, 'signage': 18495, 'bloodbath': 18496, 'semifinals': 18497, 'aerobic': 18498, 'bejewel': 18499, 'tush': 18500, 'golin': 18501, 'flamethrowers': 18502, 'mundane': 18503, 'ensemble': 18504, 'garry': 18505, 'stupidity': 18506, 'ipecac': 18507, 'croft': 18508, 'crofts': 18509, 'earle': 18510, 'sift': 18511, 'stuntin': 18512, 'profitable': 18513, 'jodie': 18514, 'suicidegirls': 18515, 'technicolor': 18516, 'motels': 18517, 'indistinct': 18518, 'femur': 18519, 'mouthwatering': 18520, 'huffy': 18521, 'fuckable': 18522, 'congregations': 18523, 'fugoo': 18524, 'basel': 18525, 'dakotans': 18526, 'suge': 18527, 'dishearten': 18528, 'unformed': 18529, 'reb': 18530, 'zalman': 18531, 'indication': 18532, 'ideals': 18533, 'photobomber': 18534, 'aerosol': 18535, 'rasputins': 18536, 'deceit': 18537, 'vertigo': 18538, 'panorama': 18539, 'goddam': 18540, 'yothers': 18541, 'pancuronium': 18542, 'bromide': 18543, 'possessive': 18544, 'kudlow': 18545, 'lectern': 18546, 'gad': 18547, 'kimmy': 18548, 'schmidt': 18549, 'tituss': 18550, 'burgess': 18551, 'peeno': 18552, 'laporte': 18553, 'bratz': 18554, 'fraggle': 18555, 'passionately': 18556, 'priestley': 18557, 'shannen': 18558, 'doherty': 18559, 'timeless': 18560, 'airdrops': 18561, 'stiffed': 18562, 'watterson': 18563, 'hobbes': 18564, 'windy': 18565, 'monetize': 18566, 'enhancement': 18567, 'untelevised': 18568, 'drumsticks': 18569, 'serenade': 18570, 'badminton': 18571, 'hazy': 18572, 'argo': 18573, 'honky': 18574, 'tonkin': 18575, 'antihero': 18576, 'ladykiller': 18577, 'denouncement': 18578, 'kumbaya': 18579, 'inconvenient': 18580, 'dyllan': 18581, 'carjacker': 18582, 'disrespectfully': 18583, 'quantico': 18584, 'baptism': 18585, 'diapers': 18586, 'essence': 18587, 'glasgow': 18588, 'concertgoer': 18589, 'stepdad': 18590, 'goatee': 18591, 'keqiang': 18592, 'whereas': 18593, 'recalibrates': 18594, 'classically': 18595, 'flaccid': 18596, 'hayden': 18597, 'delevingne': 18598, 'paparazzo': 18599, 'properties': 18600, 'vitaminwater': 18601, 'hoodie': 18602, 'defenseless': 18603, 'outvets': 18604, 'outtakes': 18605, 'cretaceous': 18606, 'roddick': 18607, 'vape': 18608, 'pewter': 18609, 'inuit': 18610, 'israelis': 18611, 'natalee': 18612, 'connive': 18613, 'weakest': 18614, 'retainer': 18615, 'cern': 18616, 'universes': 18617, 'zbt': 18618, 'cheech': 18619, 'medvedev': 18620, 'powerless': 18621, 'viola': 18622, 'walkabout': 18623, 'wilderness': 18624, 'cutscenes': 18625, 'rerelease': 18626, 'vicariously': 18627, 'aspirations': 18628, 'csi': 18629, 'prenuptial': 18630, 'ludicrous': 18631, 'jenga': 18632, 'mubarak': 18633, 'mariana': 18634, 'fastball': 18635, 'tiniest': 18636, 'ruthlessly': 18637, 'liters': 18638, 'yanny': 18639, 'ruthless': 18640, 'algae': 18641, 'venmo': 18642, 'goons': 18643, 'botanical': 18644, 'vlogger': 18645, 'deliberate': 18646, 'somber': 18647, 'om': 18648, 'ballgown': 18649, 'daft': 18650, 'shareholder': 18651, 'bhikkunis': 18652, 'unforgettable': 18653, 'woodlawn': 18654, 'gigabite': 18655, 'pricey': 18656, 'scarves': 18657, 'alina': 18658, 'zagitova': 18659, 'ari': 18660, 'fleischer': 18661, 'rohypnol': 18662, 'mangy': 18663, 'overlap': 18664, 'lancet': 18665, 'winchester': 18666, 'mm': 18667, 'notme': 18668, 'webcam': 18669, 'vandal': 18670, 'phallus': 18671, 'fogelberg': 18672, 'lite': 18673, 'nester': 18674, 'gus': 18675, 'rapport': 18676, 'regardless': 18677, 'dhaka': 18678, 'expat': 18679, 'rudd': 18680, 'juvenile': 18681, 'drape': 18682, 'shawl': 18683, 'immodest': 18684, 'crisper': 18685, 'directive': 18686, 'warby': 18687, 'altruism': 18688, 'skinematography': 18689, 'ol': 18690, 'downvote': 18691, 'groggy': 18692, 'brutalize': 18693, 'measurably': 18694, 'zipline': 18695, 'ziplines': 18696, 'blazers': 18697, 'bricks': 18698, 'tunisia': 18699, 'monaco': 18700, 'penthousing': 18701, 'willard': 18702, 'rodents': 18703, 'kennel': 18704, 'khalid': 18705, 'sheikh': 18706, 'camila': 18707, 'cabello': 18708, 'repopulation': 18709, 'crimean': 18710, 'regulators': 18711, 'vooms': 18712, 'painfully': 18713, 'kangaroos': 18714, 'masochistic': 18715, 'adoptions': 18716, 'queercore': 18717, 'nibble': 18718, 'languish': 18719, 'reannounces': 18720, 'medina': 18721, 'undocu': 18722, 'larios': 18723, 'checkpoints': 18724, 'klemke': 18725, 'consensual': 18726, 'gyro': 18727, 'frenchman': 18728, 'bataclan': 18729, 'quicker': 18730, 'souter': 18731, 'microchips': 18732, 'buttermilk': 18733, 'fray': 18734, 'favorably': 18735, 'showrunner': 18736, 'koala': 18737, 'jemele': 18738, 'nabj': 18739, 'extract': 18740, 'greedy': 18741, 'continental': 18742, 'sunchips': 18743, 'glamorize': 18744, 'molt': 18745, 'compliance': 18746, 'sweeten': 18747, 'handbook': 18748, 'uncircumcised': 18749, 'lumbersexual': 18750, 'climactic': 18751, 'thrust': 18752, 'maelstrom': 18753, 'souvenir': 18754, 'aggressively': 18755, 'redtube': 18756, 'opiate': 18757, 'levin': 18758, 'carmine': 18759, 'appice': 18760, 'mccarty': 18761, 'shimabukuro': 18762, 'preventable': 18763, 'coordinate': 18764, 'countdown': 18765, 'copper': 18766, 'adamant': 18767, 'reservations': 18768, 'lng': 18769, 'terminals': 18770, 'backwaters': 18771, 'snag': 18772, 'drugstore': 18773, 'rowers': 18774, 'demonstrator': 18775, 'bana': 18776, 'emasculate': 18777, 'druggies': 18778, 'diffuser': 18779, 'exempt': 18780, 'holistic': 18781, 'rockin': 18782, 'ironic': 18783, 'minimize': 18784, 'cockatiel': 18785, 'norris': 18786, 'madmen': 18787, 'multinational': 18788, 'brainpower': 18789, 'colonial': 18790, 'williamsburg': 18791, 'soulcycle': 18792, 'rwandan': 18793, 'brienne': 18794, 'oat': 18795, 'barley': 18796, 'risotto': 18797, 'yammer': 18798, 'eqypt': 18799, 'erectile': 18800, 'cutback': 18801, 'elks': 18802, 'overpasses': 18803, 'tamer': 18804, 'marginal': 18805, 'minors': 18806, 'vw': 18807, 'catatonic': 18808, 'intelligently': 18809, 'classifieds': 18810, 'humankind': 18811, 'rut': 18812, 'skirmish': 18813, 'villains': 18814, 'andromeda': 18815, 'specially': 18816, 'wearer': 18817, 'exodus': 18818, 'hotdogs': 18819, 'creepily': 18820, 'aftertaste': 18821, 'lob': 18822, 'alright': 18823, 'duress': 18824, 'posthumously': 18825, 'mekas': 18826, 'rosary': 18827, 'gals': 18828, 'goddamned': 18829, 'waterfront': 18830, 'obamaandkids': 18831, 'inarticulate': 18832, 'hitchens': 18833, 'taiwanese': 18834, 'stirrup': 18835, 'rudest': 18836, 'calcutta': 18837, 'sapphire': 18838, 'cfl': 18839, 'unsportsmanlike': 18840, 'bloused': 18841, 'rainfall': 18842, 'cyberbullying': 18843, 'hisp': 18844, 'nico': 18845, 'balm': 18846, 'salke': 18847, 'sherry': 18848, 'lansing': 18849, 'wx': 18850, 'guillotine': 18851, 'treme': 18852, 'saltines': 18853, 'immunotherapy': 18854, 'secrete': 18855, 'plethora': 18856, 'courtside': 18857, 'pacers': 18858, 'ire': 18859, 'imprisonment': 18860, 'rinpoche': 18861, 'committees': 18862, 'nokia': 18863, 'rouseff': 18864, 'breather': 18865, 'fatties': 18866, 'pantywaist': 18867, 'courier': 18868, 'crest': 18869, 'nirvana': 18870, 'malick': 18871, 'freida': 18872, 'pinto': 18873, 'photoshopped': 18874, 'sitar': 18875, 'pantsuit': 18876, 'carnivore': 18877, 'meatheads': 18878, 'dysphoria': 18879, 'persky': 18880, 'kessler': 18881, 'perforate': 18882, 'fatty': 18883, 'zod': 18884, 'beet': 18885, 'hiss': 18886, 'protrude': 18887, 'tiffany': 18888, 'haddish': 18889, 'sheriffs': 18890, 'moniz': 18891, 'spieth': 18892, 'willett': 18893, 'nytimes': 18894, 'aint': 18895, 'fmr': 18896, 'zalmay': 18897, 'khalilzad': 18898, 'iteration': 18899, 'combinations': 18900, 'redact': 18901, 'easton': 18902, 'gaveling': 18903, 'navajo': 18904, 'ilana': 18905, 'glazer': 18906, 'harassers': 18907, 'overinflated': 18908, 'shoplifters': 18909, 'seedless': 18910, 'ointment': 18911, 'firebomb': 18912, 'condo': 18913, 'bylaw': 18914, 'deb': 18915, 'microsft': 18916, 'rejuvenate': 18917, 'yore': 18918, 'unborn': 18919, 'simper': 18920, 'demography': 18921, 'demographer': 18922, 'mockument': 18923, 'occupiers': 18924, 'nratv': 18925, 'microaggressions': 18926, 'agile': 18927, 'newscaster': 18928, 'ns': 18929, 'dwf': 18930, 'governorship': 18931, 'iamthegoldenstatekiller': 18932, 'supersonic': 18933, 'singlehandedly': 18934, 'resentencing': 18935, 'orson': 18936, 'uswnt': 18937, 'fabricate': 18938, 'mound': 18939, 'scorpion': 18940, 'vib': 18941, 'systematic': 18942, 'earrings': 18943, 'spellbind': 18944, 'dermer': 18945, 'christophe': 18946, 'michalak': 18947, 'ketamine': 18948, 'depressant': 18949, 'vj': 18950, 'halcyon': 18951, 'jinx': 18952, 'receivable': 18953, 'collaborator': 18954, 'argentinian': 18955, 'riverside': 18956, 'preregistered': 18957, 'shortfall': 18958, 'bazooka': 18959, 'mandarin': 18960, 'memberships': 18961, 'contemptible': 18962, 'silky': 18963, 'kickabout': 18964, 'cauliflower': 18965, 'geils': 18966, 'mortarboard': 18967, 'collaborations': 18968, 'horatio': 18969, 'sanz': 18970, 'kay': 18971, 'amatrice': 18972, 'rockers': 18973, 'convergence': 18974, 'remoteness': 18975, 'dignify': 18976, 'showoff': 18977, 'pallbearer': 18978, 'counterterrorists': 18979, 'interchangeable': 18980, 'starlets': 18981, 'defang': 18982, 'province': 18983, 'bystanding': 18984, 'examples': 18985, 'grumblethor': 18986, 'mischievous': 18987, 'swank': 18988, 'tasters': 18989, 'upkeep': 18990, 'cams': 18991, 'officemates': 18992, 'unwittingly': 18993, 'endow': 18994, 'wring': 18995, 'cabernet': 18996, 'sauvignon': 18997, 'bulletin': 18998, 'austerity': 18999, 'clothesline': 19000, 'cutthroat': 19001, 'stager': 19002, 'zarin': 19003, 'ramona': 19004, 'sonata': 19005, 'fireball': 19006, 'combo': 19007, 'disembark': 19008, 'osbourne': 19009, 'nonvoter': 19010, 'lovebird': 19011, 'jeeves': 19012, 'warts': 19013, 'visceral': 19014, 'suspicion': 19015, 'untrustworthy': 19016, 'scampi': 19017, 'normally': 19018, 'noche': 19019, 'pasi': 19020, 'soir': 19021, 'yatseniuk': 19022, 'chatroom': 19023, 'rotisseries': 19024, 'cait': 19025, 'gaseous': 19026, 'rancher': 19027, 'mysteryland': 19028, 'pyrotechnics': 19029, 'addclimatechangetotv': 19030, 'deafen': 19031, 'darcy': 19032, 'spiel': 19033, 'suicidal': 19034, 'geese': 19035, 'jetliner': 19036, 'queue': 19037, 'primitive': 19038, 'hardware': 19039, 'shiver': 19040, 'spine': 19041, 'cheezburger': 19042, 'vegetation': 19043, 'hitchhike': 19044, 'saran': 19045, 'brownie': 19046, 'sus': 19047, 'tipton': 19048, 'sportswriter': 19049, 'memorization': 19050, 'mgm': 19051, 'methamphetamines': 19052, 'marrakesh': 19053, 'tcby': 19054, 'unplayed': 19055, 'forensics': 19056, 'turvy': 19057, 'adriatic': 19058, 'disinvited': 19059, 'tantric': 19060, 'bacterial': 19061, 'intuition': 19062, 'structurally': 19063, 'transitional': 19064, 'hotcake': 19065, 'brisk': 19066, 'hampton': 19067, 'concierge': 19068, 'missuniverse': 19069, 'blockade': 19070, 'zac': 19071, 'efron': 19072, 'presentness': 19073, 'lund': 19074, 'deadbeat': 19075, 'dependency': 19076, 'annul': 19077, 'aptitude': 19078, 'feek': 19079, 'vigorously': 19080, 'readin': 19081, 'researchin': 19082, 'writin': 19083, 'modifier': 19084, 'prelims': 19085, 'cynics': 19086, 'realists': 19087, 'confide': 19088, 'jermaine': 19089, 'dupri': 19090, 'broil': 19091, 'meats': 19092, 'coatless': 19093, 'deregulation': 19094, 'bridesmaid': 19095, 'writhe': 19096, 'tentacles': 19097, 'dustpan': 19098, 'dodd': 19099, 'rehearse': 19100, 'betelgeuse': 19101, 'supernova': 19102, 'wheeldon': 19103, 'gershwins': 19104, 'muppet': 19105, 'metzger': 19106, 'learnin': 19107, 'davenport': 19108, 'sbarro': 19109, 'commodities': 19110, 'trader': 19111, 'outgrow': 19112, 'irvin': 19113, 'yalom': 19114, 'madcap': 19115, 'zany': 19116, 'hijinks': 19117, 'mantis': 19118, 'hesitantly': 19119, 'roundabout': 19120, 'cigars': 19121, 'busier': 19122, 'bruin': 19123, 'yutu': 19124, 'retrial': 19125, 'cinch': 19126, 'maroulis': 19127, 'armour': 19128, 'swivel': 19129, 'wienermobile': 19130, 'wienermobiles': 19131, 'thorogood': 19132, 'kinki': 19133, 'cambodian': 19134, 'dictatorship': 19135, 'underwood': 19136, 'sundown': 19137, 'chiropractor': 19138, 'vertebrae': 19139, 'chummy': 19140, 'gonzaga': 19141, 'keaton': 19142, 'gauguin': 19143, 'fondation': 19144, 'beyeler': 19145, 'crushworthy': 19146, 'mazing': 19147, 'jilt': 19148, 'earther': 19149, 'quintillion': 19150, 'disciplinarian': 19151, 'unruly': 19152, 'meatloaf': 19153, 'femoral': 19154, 'artery': 19155, 'dildos': 19156, 'snacker': 19157, 'municipal': 19158, 'bookworms': 19159, 'suborbital': 19160, 'propulsion': 19161, 'muppets': 19162, 'orban': 19163, 'levitate': 19164, 'rainforests': 19165, 'passports': 19166, 'scourge': 19167, 'rumba': 19168, 'cyst': 19169, 'conventions': 19170, 'reenactor': 19171, 'vod': 19172, 'thus': 19173, 'swattin': 19174, 'incompatible': 19175, 'oligarch': 19176, 'afterbirth': 19177, 'germs': 19178, 'brittany': 19179, 'kwatinetz': 19180, 'orgy': 19181, 'defame': 19182, 'pynk': 19183, 'airlock': 19184, 'xxs': 19185, 'slobbery': 19186, 'liposuction': 19187, 'motorcyclist': 19188, 'bennett': 19189, 'slipknot': 19190, 'snapchatting': 19191, 'goodlatte': 19192, 'neons': 19193, 'gamgam': 19194, 'pga': 19195, 'takeaways': 19196, 'negotiators': 19197, 'trig': 19198, 'unbelt': 19199, 'walgreen': 19200, 'wineries': 19201, 'como': 19202, 'flor': 19203, 'misspoke': 19204, 'caligula': 19205, 'minions': 19206, 'installation': 19207, 'ancestry': 19208, 'juggernaut': 19209, 'mist': 19210, 'porsha': 19211, 'bennington': 19212, 'tristan': 19213, 'falluja': 19214, 'esa': 19215, 'innate': 19216, 'formative': 19217, 'crawlspaces': 19218, 'outsize': 19219, 'endeavour': 19220, 'cakeshop': 19221, 'tamper': 19222, 'marathons': 19223, 'interventions': 19224, 'noticeable': 19225, 'slacker': 19226, 'anthems': 19227, 'illiterate': 19228, 'hideaways': 19229, 'recyclables': 19230, 'beagle': 19231, 'chinaperson': 19232, 'rightist': 19233, 'ambulance': 19234, 'sneakers': 19235, 'furiously': 19236, 'contextless': 19237, 'jb': 19238, 'smoove': 19239, 'sugary': 19240, 'brouhaha': 19241, 'pierre': 19242, 'scorecard': 19243, 'sandbag': 19244, 'sergeant': 19245, 'cadet': 19246, 'chowderhead': 19247, 'sled': 19248, 'fester': 19249, 'tyrese': 19250, 'grimm': 19251, 'apologists': 19252, 'jokingly': 19253, 'parley': 19254, 'ringleader': 19255, 'clank': 19256, 'phyllis': 19257, 'schlafly': 19258, 'kingmakers': 19259, 'intimidation': 19260, 'donovan': 19261, 'mitchell': 19262, 'footwear': 19263, 'uaw': 19264, 'fca': 19265, 'greitens': 19266, 'pressurization': 19267, 'kellyonmymind': 19268, 'gissendaner': 19269, 'weiwei': 19270, 'catalogue': 19271, 'stonestreet': 19272, 'electrocution': 19273, 'interventionists': 19274, 'paragon': 19275, 'chivalrous': 19276, 'toobin': 19277, 'jumpsuit': 19278, 'redefinition': 19279, 'fern': 19280, 'decode': 19281, 'umpteenth': 19282, 'beelines': 19283, 'pinhead': 19284, 'yazidis': 19285, 'rc': 19286, 'karenina': 19287, 'copenhagen': 19288, 'coloradans': 19289, 'deregistered': 19290, 'nipple': 19291, 'trybeatingmelightly': 19292, 'briefcases': 19293, 'halogen': 19294, 'faker': 19295, 'machete': 19296, 'gratuity': 19297, 'ramen': 19298, 'pao': 19299, 'cgi': 19300, 'ucsf': 19301, 'benioff': 19302, 'hemophiliac': 19303, 'kilimanjaro': 19304, 'lima': 19305, 'exemptions': 19306, 'ncnoltes': 19307, 'alienation': 19308, 'kritzer': 19309, 'teal': 19310, 'wicks': 19311, 'kc': 19312, 'reliance': 19313, 'fruitvale': 19314, 'getter': 19315, 'pebble': 19316, 'werner': 19317, 'herzog': 19318, 'treadwell': 19319, 'pintauro': 19320, 'tipper': 19321, 'lotioning': 19322, 'spaghetti': 19323, 'elegance': 19324, 'connick': 19325, 'merch': 19326, 'boynton': 19327, 'jackman': 19328, 'hazen': 19329, 'recharge': 19330, 'steagall': 19331, 'jonesing': 19332, 'improv': 19333, 'troupe': 19334, 'protract': 19335, 'neckhole': 19336, 'remorseless': 19337, 'selene': 19338, 'archaeologist': 19339, 'inhaler': 19340, 'lycra': 19341, 'infomercial': 19342, 'kristofferson': 19343, 'espy': 19344, 'chechens': 19345, 'enthusiasts': 19346, 'bebop': 19347, 'rocksteady': 19348, 'whimsical': 19349, 'meloni': 19350, 'freud': 19351, 'appliance': 19352, 'chatroulette': 19353, 'creditors': 19354, 'setup': 19355, 'groceries': 19356, 'strategically': 19357, 'citizenry': 19358, 'islanders': 19359, 'wissam': 19360, 'mana': 19361, 'roughly': 19362, 'sealy': 19363, 'publicize': 19364, 'probiotic': 19365, 'inert': 19366, 'vh': 19367, 'uplift': 19368, 'regulator': 19369, 'zionism': 19370, 'seagull': 19371, 'donbas': 19372, 'ming': 19373, 'yuan': 19374, 'mainland': 19375, 'nilla': 19376, 'growers': 19377, 'soften': 19378, 'exploration': 19379, 'partnerships': 19380, 'spurlock': 19381, 'accusation': 19382, 'scamming': 19383, 'magdalene': 19384, 'alpert': 19385, 'gogo': 19386, 'paleontology': 19387, 'congratulations': 19388, 'developmental': 19389, 'bose': 19390, 'optimize': 19391, 'tedx': 19392, 'skeptic': 19393, 'medicalert': 19394, 'plouffe': 19395, 'indy': 19396, 'obscene': 19397, 'launder': 19398, 'copeland': 19399, 'ep': 19400, 'disquiet': 19401, 'exertion': 19402, 'arteries': 19403, 'mandel': 19404, 'bubba': 19405, 'deflect': 19406, 'caretakers': 19407, 'blizzcon': 19408, 'togo': 19409, 'lyte': 19410, 'hansel': 19411, 'gretel': 19412, 'secretaries': 19413, 'benito': 19414, 'paddlers': 19415, 'baggies': 19416, 'legitimacy': 19417, 'boitano': 19418, 'marshawn': 19419, 'shareware': 19420, 'israelites': 19421, 'sinai': 19422, 'hotcakes': 19423, 'canvasser': 19424, 'slender': 19425, 'turpan': 19426, 'apfel': 19427, 'hardee': 19428, 'reinvested': 19429, 'blackjack': 19430, 'gefloigel': 19431, 'pooch': 19432, 'backpage': 19433, 'undersell': 19434, 'counterintuitive': 19435, 'margaritaville': 19436, 'nicoderm': 19437, 'nicotine': 19438, 'tiq': 19439, 'liberation': 19440, 'multitasking': 19441, 'voguing': 19442, 'confine': 19443, 'crass': 19444, 'polaris': 19445, 'bern': 19446, 'technologies': 19447, 'authentically': 19448, 'cutlery': 19449, 'cloaca': 19450, 'acknowledgement': 19451, 'slither': 19452, 'hymnal': 19453, 'winfrey': 19454, 'considerable': 19455, 'harem': 19456, 'typographical': 19457, 'melanoma': 19458, 'emancipation': 19459, 'proclamation': 19460, 'monarch': 19461, 'busiest': 19462, 'saddle': 19463, 'reece': 19464, 'soreness': 19465, 'congressperson': 19466, 'entwine': 19467, 'extrovert': 19468, 'dillard': 19469, 'rakhine': 19470, 'ut': 19471, 'alumnus': 19472, 'cleverly': 19473, 'dada': 19474, 'gambler': 19475, 'sculptor': 19476, 'magma': 19477, 'fearmongering': 19478, 'hansom': 19479, 'junta': 19480, 'dreadlocked': 19481, 'serta': 19482, 'wholesaler': 19483, 'dodgeball': 19484, 'commenter': 19485, 'morass': 19486, 'dreamgirl': 19487, 'centenarians': 19488, 'cosplays': 19489, 'lannister': 19490, 'firebrand': 19491, 'insistent': 19492, 'bernstein': 19493, 'tribes': 19494, 'qatari': 19495, 'emir': 19496, 'fps': 19497, 'min': 19498, 'romantically': 19499, 'gamechanger': 19500, 'kailash': 19501, 'satyarthi': 19502, 'negativity': 19503, 'militancy': 19504, 'fleetingly': 19505, 'shag': 19506, 'burka': 19507, 'niqab': 19508, 'aman': 19509, 'sethi': 19510, 'tamp': 19511, 'poo': 19512, 'daryl': 19513, 'snorkel': 19514, 'lynde': 19515, 'citrix': 19516, 'hermits': 19517, 'natgeo': 19518, 'internets': 19519, 'uncles': 19520, 'corral': 19521, 'ouchless': 19522, 'humanly': 19523, 'intercultural': 19524, 'punctuality': 19525, 'gigawatts': 19526, 'socrates': 19527, 'dialogues': 19528, 'shill': 19529, 'reffed': 19530, 'pogue': 19531, 'canteen': 19532, 'abstract': 19533, 'mckinsey': 19534, 'malaria': 19535, 'rattlesnakes': 19536, 'elude': 19537, 'pursuers': 19538, 'counteroffensive': 19539, 'mcadoo': 19540, 'bandicoot': 19541, 'tuxedo': 19542, 'cassette': 19543, 'rodney': 19544, 'sometime': 19545, 'slanty': 19546, 'italics': 19547, 'prettiest': 19548, 'wasp': 19549, 'socialite': 19550, 'cunt': 19551, 'spock': 19552, 'rahman': 19553, 'sherwin': 19554, 'endometrial': 19555, 'foodborne': 19556, 'eclair': 19557, 'goya': 19558, 'protocols': 19559, 'ebony': 19560, 'magazines': 19561, 'vai': 19562, 'dispenser': 19563, 'hauntedness': 19564, 'distinctly': 19565, 'cilantro': 19566, 'cutbacks': 19567, 'dundee': 19568, 'mileage': 19569, 'matchbox': 19570, 'wiseau': 19571, 'samira': 19572, 'wiley': 19573, 'conservationist': 19574, 'blige': 19575, 'abuzz': 19576, 'condemnation': 19577, 'grit': 19578, 'courteously': 19579, 'hypocritical': 19580, 'vibe': 19581, 'uncaptured': 19582, 'keffiyeh': 19583, 'starboard': 19584, 'thunk': 19585, 'moosh': 19586, 'baroo': 19587, 'locket': 19588, 'camry': 19589, 'brighter': 19590, 'sweatiest': 19591, 'homeopathic': 19592, 'spector': 19593, 'pessimism': 19594, 'ciarlelli': 19595, 'vindictive': 19596, 'weirdly': 19597, 'marilinda': 19598, 'unskewing': 19599, 'gadfly': 19600, 'jelly': 19601, 'aftershock': 19602, 'consecrate': 19603, 'cancerous': 19604, 'gianforte': 19605, 'materialistic': 19606, 'punniest': 19607, 'bouncers': 19608, 'supermoon': 19609, 'don': 19610, 'livid': 19611, 'cassidy': 19612, 'cardiovascular': 19613, 'dapper': 19614, 'brazen': 19615, 'shimmer': 19616, 'umbrellas': 19617, 'magician': 19618, 'blowtorch': 19619, 'turnips': 19620, 'labyrinthian': 19621, 'logos': 19622, 'pretties': 19623, 'mace': 19624, 'fanny': 19625, 'satchel': 19626, 'heisman': 19627, 'zenzinger': 19628, 'nutso': 19629, 'forte': 19630, 'qualification': 19631, 'shallow': 19632, 'bilious': 19633, 'unsaved': 19634, 'gallstone': 19635, 'incomplete': 19636, 'equalizer': 19637, 'proofreader': 19638, 'rhubarb': 19639, 'explainer': 19640, 'formerly': 19641, 'unspeakable': 19642, 'um': 19643, 'adrenal': 19644, 'interlude': 19645, 'competitors': 19646, 'chromecast': 19647, 'vot': 19648, 'marcomentum': 19649, 'header': 19650, 'shortly': 19651, 'esposito': 19652, 'baaaaack': 19653, 'presumptuous': 19654, 'pitcher': 19655, 'timelines': 19656, 'beastie': 19657, 'unbeatable': 19658, 'constrictive': 19659, 'kup': 19660, 'effigy': 19661, 'disarm': 19662, 'berk': 19663, 'deletion': 19664, 'shiites': 19665, 'framers': 19666, 'amendments': 19667, 'cortege': 19668, 'enbridge': 19669, 'kazakhstani': 19670, 'carbo': 19671, 'moustache': 19672, 'tomboy': 19673, 'meaty': 19674, 'ahmad': 19675, 'rahami': 19676, 'tiptoe': 19677, 'expertly': 19678, 'fawlty': 19679, 'infighting': 19680, 'pea': 19681, 'everyman': 19682, 'janna': 19683, 'bashful': 19684, 'aipac': 19685, 'wellesley': 19686, 'brochure': 19687, 'nofilter': 19688, 'hairs': 19689, 'careerlink': 19690, 'alums': 19691, 'markell': 19692, 'okcupid': 19693, 'aspershirt': 19694, 'marina': 19695, 'siegel': 19696, 'humidifier': 19697, 'mastiff': 19698, 'droopy': 19699, 'condescend': 19700, 'virtually': 19701, 'rosario': 19702, 'elmore': 19703, 'succinctly': 19704, 'gloomy': 19705, 'polly': 19706, 'zehnder': 19707, 'swader': 19708, 'superdelegates': 19709, 'raza': 19710, 'encode': 19711, 'burgenland': 19712, 'ceremoniously': 19713, 'tenuous': 19714, 'afterwards': 19715, 'nagel': 19716, 'garrison': 19717, 'keillor': 19718, 'stoplight': 19719, 'waterslide': 19720, 'minson': 19721, 'hungarian': 19722, 'embarrassment': 19723, 'miracles': 19724, 'ironically': 19725, 'kozol': 19726, 'biter': 19727, 'gopsongsaboutethics': 19728, 'rainbows': 19729, 'adequate': 19730, 'interplanetary': 19731, 'carney': 19732, 'outrageously': 19733, 'loopholes': 19734, 'etch': 19735, 'accessory': 19736, 'investigations': 19737, 'animator': 19738, 'glisten': 19739, 'scum': 19740, 'hochuli': 19741, 'hotties': 19742, 'voluptuous': 19743, 'shapely': 19744, 'clementines': 19745, 'heller': 19746, 'treaters': 19747, 'uncomprehendingly': 19748, 'chlo': 19749, 'sevign': 19750, 'umlaut': 19751, 'smirk': 19752, 'mudslides': 19753, 'silliest': 19754, 'hdtv': 19755, 'compatibility': 19756, 'mantel': 19757, 'tuscan': 19758, 'resettle': 19759, 'mientus': 19760, 'punxsutawney': 19761, 'urination': 19762, 'cftc': 19763, 'effortless': 19764, 'parlay': 19765, 'cisco': 19766, 'wantonly': 19767, 'firefighting': 19768, 'esl': 19769, 'concentrate': 19770, 'vocabulary': 19771, 'colorblind': 19772, 'verb': 19773, 'noun': 19774, 'prepositional': 19775, 'faroe': 19776, 'talents': 19777, 'cinematographer': 19778, 'girly': 19779, 'misconception': 19780, 'handbag': 19781, 'vegetarians': 19782, 'dullard': 19783, 'vocational': 19784, 'mane': 19785, 'stillbirth': 19786, 'assurance': 19787, 'codepink': 19788, 'tarmac': 19789, 'electability': 19790, 'gotta': 19791, 'baseless': 19792, 'reciprocate': 19793, 'diorama': 19794, 'vance': 19795, 'threshold': 19796, 'lily': 19797, 'jacuzzi': 19798, 'pinkerton': 19799, 'busters': 19800, 'sensei': 19801, 'parch': 19802, 'commentate': 19803, 'fitzpatrick': 19804, 'horseface': 19805, 'rentals': 19806, 'completists': 19807, 'tracey': 19808, 'ullman': 19809, 'kuczynski': 19810, 'spokesperson': 19811, 'canard': 19812, 'hgtv': 19813, 'foolhardy': 19814, 'onesie': 19815, 'corbusier': 19816, 'nuances': 19817, 'stingy': 19818, 'saga': 19819, 'cryptozoologist': 19820, 'veronaon': 19821, 'circumcision': 19822, 'pell': 19823, 'lisande': 19824, 'cyndi': 19825, 'lauper': 19826, 'thumbtack': 19827, 'audrey': 19828, 'hepburn': 19829, 'toucan': 19830, 'mascots': 19831, 'segway': 19832, 'rotten': 19833, 'oddball': 19834, 'expend': 19835, 'leathery': 19836, 'busey': 19837, 'msf': 19838, 'faceoff': 19839, 'hysterically': 19840, 'vulture': 19841, 'dinnertime': 19842, 'regretfully': 19843, 'hewitt': 19844, 'myspace': 19845, 'tamra': 19846, 'housewives': 19847, 'nerdiest': 19848, 'elliptical': 19849, 'psychosexual': 19850, 'mormons': 19851, 'fsu': 19852, 'dalvin': 19853, 'jarringly': 19854, 'starcraft': 19855, 'persistence': 19856, 'raphael': 19857, 'yippee': 19858, 'ki': 19859, 'yay': 19860, 'violators': 19861, 'skank': 19862, 'temps': 19863, 'naturist': 19864, 'kwanzaa': 19865, 'imbalance': 19866, 'hissy': 19867, 'headlock': 19868, 'geologic': 19869, 'klum': 19870, 'frequently': 19871, 'omnipotent': 19872, 'nova': 19873, 'bouncin': 19874, 'ejaculate': 19875, 'solace': 19876, 'suffragist': 19877, 'coherent': 19878, 'leary': 19879, 'interviewers': 19880, 'mainsplainer': 19881, 'usurp': 19882, 'pvc': 19883, 'campfire': 19884, 'faris': 19885, 'jena': 19886, 'malone': 19887, 'lyons': 19888, 'aunties': 19889, 'megadrought': 19890, 'disarray': 19891, 'sincere': 19892, 'cinephiles': 19893, 'penises': 19894, 'lara': 19895, 'boyle': 19896, 'toyotathon': 19897, 'armie': 19898, 'ratburn': 19899, 'twink': 19900, 'camcorder': 19901, 'unchallenged': 19902, 'underperform': 19903, 'ballers': 19904, 'antoni': 19905, 'porowski': 19906, 'deshawnda': 19907, 'clauses': 19908, 'yeti': 19909, 'abdominable': 19910, 'terminology': 19911, 'enthral': 19912, 'flexibility': 19913, 'agog': 19914, 'gimp': 19915, 'schoolgirl': 19916, 'cruelest': 19917, 'obedient': 19918, 'compactor': 19919, 'glassdoor': 19920, 'spiky': 19921, 'dod': 19922, 'nomads': 19923, 'shittier': 19924, 'xxxx': 19925, 'hefty': 19926, 'underused': 19927, 'hesitant': 19928, 'jarvis': 19929, 'stearns': 19930, 'processors': 19931, 'depressingly': 19932, 'bernadette': 19933, 'conners': 19934, 'volumes': 19935, 'pawprint': 19936, 'braga': 19937, 'otaviano': 19938, 'canuto': 19939, 'replaceable': 19940, 'eleanor': 19941, 'rigby': 19942, 'risheq': 19943, 'lupe': 19944, 'libtard': 19945, 'cuck': 19946, 'frustrations': 19947, 'childlike': 19948, 'paso': 19949, 'newsguild': 19950, 'regain': 19951, 'immersion': 19952, 'homeboys': 19953, 'outer': 19954, 'almanac': 19955, 'primetime': 19956, 'inappropriations': 19957, 'sexier': 19958, 'dorchester': 19959, 'batten': 19960, 'shyla': 19961, 'stylez': 19962, 'avn': 19963, 'dui': 19964, 'sleeves': 19965, 'steves': 19966, 'ghanaian': 19967, 'kokopellied': 19968, 'uniquely': 19969, 'unsuited': 19970, 'pagodas': 19971, 'cate': 19972, 'blanchett': 19973, 'dewan': 19974, 'appease': 19975, 'figurines': 19976, 'biodegrade': 19977, 'reuther': 19978, 'managers': 19979, 'railways': 19980, 'boatless': 19981, 'cucumber': 19982, 'quirk': 19983, 'idina': 19984, 'menzel': 19985, 'pepe': 19986, 'mitsubishi': 19987, 'plymouth': 19988, 'beasts': 19989, 'quayle': 19990, 'patriarch': 19991, 'hezbollah': 19992, 'hindsight': 19993, 'density': 19994, 'kevins': 19995, 'overtire': 19996, 'johns': 19997, 'cartgate': 19998, 'ryancare': 19999, 'zedd': 20000, 'kuwtk': 20001, 'dannon': 20002, 'coincide': 20003, 'mag': 20004, 'gorton': 20005, 'inflections': 20006, 'unrewarding': 20007, 'clamshell': 20008, 'exquisite': 20009, 'unsuccessfully': 20010, 'facinelli': 20011, 'jaimie': 20012, 'liev': 20013, 'schreiber': 20014, 'seismologist': 20015, 'richter': 20016, 'mumolo': 20017, 'chevy': 20018, 'lamont': 20019, 'banal': 20020, 'rca': 20021, 'arista': 20022, 'daltrey': 20023, 'hernan': 20024, 'barangan': 20025, 'fantastically': 20026, 'traitor': 20027, 'shortsighted': 20028, 'sheila': 20029, 'heimlich': 20030, 'royalties': 20031, 'tine': 20032, 'mouthfuls': 20033, 'melanesian': 20034, 'romeo': 20035, 'juliet': 20036, 'disenfranchise': 20037, 'lull': 20038, 'stupidest': 20039, 'kurdi': 20040, 'idolatry': 20041, 'grapevine': 20042, 'horsey': 20043, 'internationalization': 20044, 'afl': 20045, 'cio': 20046, 'nobannowall': 20047, 'harmon': 20048, 'fearsome': 20049, 'allstate': 20050, 'masseuse': 20051, 'mockingly': 20052, 'swimwear': 20053, 'unedited': 20054, 'lupone': 20055, 'sofa': 20056, 'backstabbing': 20057, 'traitors': 20058, 'bionic': 20059, 'fingertip': 20060, 'ike': 20061, 'barinholtz': 20062, 'blare': 20063, 'boseman': 20064, 'tastic': 20065, 'pubic': 20066, 'underbelly': 20067, 'sheedy': 20068, 'aleck': 20069, 'isabel': 20070, 'allende': 20071, 'bussi': 20072, 'wltz': 20073, 'hartford': 20074, 'overcharge': 20075, 'invention': 20076, 'penicillin': 20077, 'arsenic': 20078, 'conroy': 20079, 'septum': 20080, 'edtech': 20081, 'antibodies': 20082, 'dominicans': 20083, 'emission': 20084, 'pulsate': 20085, 'sherbet': 20086, 'zagat': 20087, 'chickening': 20088, 'fabio': 20089, 'viviani': 20090, 'cinemark': 20091, 'liable': 20092, 'urbanism': 20093, 'lotions': 20094, 'storied': 20095, 'ip': 20096, 'papua': 20097, 'wrinkly': 20098, 'unshaven': 20099, 'oppenheimer': 20100, 'bhagavad': 20101, 'gita': 20102, 'gust': 20103, 'inferiority': 20104, 'citigroup': 20105, 'clique': 20106, 'warmly': 20107, 'sturgeon': 20108, 'acadia': 20109, 'tweak': 20110, 'rv': 20111, 'gsvatn': 20112, 'stoop': 20113, 'connectivity': 20114, 'strut': 20115, 'imbecile': 20116, 'opcw': 20117, 'onionman': 20118, 'kaleidoscoping': 20119, 'lifesavers': 20120, 'bahama': 20121, 'carnage': 20122, 'earnhardt': 20123, 'serengeti': 20124, 'philbin': 20125, 'finalists': 20126, 'iditarod': 20127, 'caterers': 20128, 'revenant': 20129, 'danube': 20130, 'plinko': 20131, 'acre': 20132, 'sleight': 20133, 'vultures': 20134, 'smugglers': 20135, 'auditorium': 20136, 'plimpton': 20137, 'apoplectic': 20138, 'factions': 20139, 'emojisinthewild': 20140, 'farce': 20141, 'plummers': 20142, 'deutsche': 20143, 'sarcastically': 20144, 'winn': 20145, 'mccool': 20146, 'tresspasser': 20147, 'artie': 20148, 'lange': 20149, 'mathematical': 20150, 'skill': 20151, 'mollify': 20152, 'divestment': 20153, 'amazingly': 20154, 'humanlike': 20155, 'sonia': 20156, 'yoshi': 20157, 'playplace': 20158, 'draymond': 20159, 'raffi': 20160, 'sillies': 20161, 'ostensibly': 20162, 'komen': 20163, 'ayahuasca': 20164, 'interpreter': 20165, 'condense': 20166, 'zionist': 20167, 'rabbinic': 20168, 'abstention': 20169, 'chartreuse': 20170, 'luau': 20171, 'laze': 20172, 'pynchon': 20173, 'goodie': 20174, 'pillars': 20175, 'exceptions': 20176, 'tofurkey': 20177, 'sideshow': 20178, 'equestrian': 20179, 'unlikable': 20180, 'tiebreaker': 20181, 'reinstate': 20182, 'interminable': 20183, 'chapecoense': 20184, 'piloto': 20185, 'boliviano': 20186, 'snapback': 20187, 'trapeze': 20188, 'override': 20189, 'scald': 20190, 'deprive': 20191, 'injections': 20192, 'unappealing': 20193, 'soundtracks': 20194, 'lardface': 20195, 'paleo': 20196, 'platoon': 20197, 'ivana': 20198, 'farberware': 20199, 'nonstick': 20200, 'urschel': 20201, 'pests': 20202, 'graffitied': 20203, 'korman': 20204, 'candler': 20205, 'elijah': 20206, 'mcneil': 20207, 'atrans': 20208, 'deface': 20209, 'mtm': 20210, 'democalypse': 20211, 'whuppin': 20212, 'telemundo': 20213, 'incomparable': 20214, 'mittenaere': 20215, 'johanns': 20216, 'conga': 20217, 'participant': 20218, 'vulgaria': 20219, 'statham': 20220, 'pwnage': 20221, 'lbj': 20222, 'impropriety': 20223, 'ashtanga': 20224, 'gaziantep': 20225, 'nondisclosure': 20226, 'morales': 20227, 'moonlit': 20228, 'bonfire': 20229, 'conjure': 20230, 'frenchie': 20231, 'predisposition': 20232, 'clotheslines': 20233, 'convent': 20234, 'superbug': 20235, 'thousandth': 20236, 'versatile': 20237, 'minimal': 20238, 'iverson': 20239, 'realest': 20240, 'famer': 20241, 'naptime': 20242, 'renege': 20243, 'interaction': 20244, 'flusher': 20245, 'snare': 20246, 'patrolmen': 20247, 'wipeout': 20248, 'hachette': 20249, 'smartness': 20250, 'shakily': 20251, 'curfews': 20252, 'helium': 20253, 'squeaky': 20254, 'joyous': 20255, 'eid': 20256, 'ugaaso': 20257, 'abukar': 20258, 'boocow': 20259, 'mogadishu': 20260, 'nostalgically': 20261, 'engel': 20262, 'hangnail': 20263, 'mummy': 20264, 'bras': 20265, 'philanthropy': 20266, 'suavity': 20267, 'trenchcoat': 20268, 'brass': 20269, 'urn': 20270, 'maldives': 20271, 'croutons': 20272, 'amplifyd': 20273, 'traction': 20274, 'impromptu': 20275, 'contributor': 20276, 'nicki': 20277, 'minaj': 20278, 'insure': 20279, 'enthrone': 20280, 'circulation': 20281, 'chik': 20282, 'stricter': 20283, 'hobnob': 20284, 'givers': 20285, 'gamson': 20286, 'alaina': 20287, 'percival': 20288, 'uncaring': 20289, 'adulterers': 20290, 'pointless': 20291, 'oxytocin': 20292, 'chechnya': 20293, 'lengths': 20294, 'neyt': 20295, 'arkin': 20296, 'scorchlands': 20297, 'outposts': 20298, 'benatar': 20299, 'coyne': 20300, 'habitats': 20301, 'entanglements': 20302, 'shakers': 20303, 'premise': 20304, 'herpetologists': 20305, 'becker': 20306, 'guernica': 20307, 'visage': 20308, 'llorona': 20309, 'unfiltered': 20310, 'bookcase': 20311, 'stapler': 20312, 'staplers': 20313, 'bernhardt': 20314, 'flamin': 20315, 'lime': 20316, 'ulcerative': 20317, 'colitis': 20318, 'evident': 20319, 'enigmatic': 20320, 'josef': 20321, 'koudelka': 20322, 'rapture': 20323, 'depressive': 20324, 'myopia': 20325, 'optometrist': 20326, 'modi': 20327, 'wiretap': 20328, 'appreciably': 20329, 'monae': 20330, 'jowl': 20331, 'snore': 20332, 'condiments': 20333, 'decomposition': 20334, 'icelandic': 20335, 'beavan': 20336, 'insanely': 20337, 'calve': 20338, 'canadians': 20339, 'favorability': 20340, 'arlen': 20341, 'specter': 20342, 'affiliation': 20343, 'coretta': 20344, 'hairy': 20345, 'alibi': 20346, 'nissan': 20347, 'depositions': 20348, 'farallon': 20349, 'usfws': 20350, 'commodore': 20351, 'bunsen': 20352, 'burners': 20353, 'pleasantries': 20354, 'zoe': 20355, 'saldana': 20356, 'scarily': 20357, 'ultimately': 20358, 'overgrow': 20359, 'thematically': 20360, 'rapists': 20361, 'homey': 20362, 'mckinney': 20363, 'intersect': 20364, 'interdisciplinary': 20365, 'hpps': 20366, 'abso': 20367, 'moochly': 20368, 'annis': 20369, 'merron': 20370, 'operators': 20371, 'porcupine': 20372, 'corona': 20373, 'periodically': 20374, 'dub': 20375, 'malnourish': 20376, 'supervise': 20377, 'pantene': 20378, 'dispose': 20379, 'nicu': 20380, 'triangular': 20381, 'acute': 20382, 'sneakier': 20383, 'schnauzers': 20384, 'alig': 20385, 'catsuits': 20386, 'rosaries': 20387, 'nair': 20388, 'incendiary': 20389, 'loners': 20390, 'deportations': 20391, 'backward': 20392, 'unencumbered': 20393, 'reside': 20394, 'inanimate': 20395, 'inspect': 20396, 'nimrud': 20397, 'hannitys': 20398, 'objection': 20399, 'playtex': 20400, 'uncooperative': 20401, 'beckinsale': 20402, 'glenbrook': 20403, 'wrestletalk': 20404, 'koenig': 20405, 'entenmann': 20406, 'bestival': 20407, 'supermarkets': 20408, 'satin': 20409, 'blot': 20410, 'olin': 20411, 'dirtier': 20412, 'preacher': 20413, 'anjem': 20414, 'choudary': 20415, 'menswear': 20416, 'mirjana': 20417, 'lucic': 20418, 'baroni': 20419, 'influencers': 20420, 'constitutions': 20421, 'dusk': 20422, 'nights': 20423, 'simpleton': 20424, 'doubters': 20425, 'feasibility': 20426, 'kofi': 20427, 'annan': 20428, 'bedsore': 20429, 'kristin': 20430, 'assertion': 20431, 'achievment': 20432, 'kidnappings': 20433, 'labeouf': 20434, 'walletless': 20435, 'bedpost': 20436, 'slink': 20437, 'brolin': 20438, 'gingerbread': 20439, 'sontag': 20440, 'intolerance': 20441, 'barnacle': 20442, 'ionceoverheard': 20443, 'gladiator': 20444, 'turbo': 20445, 'bb': 20446, 'forbearance': 20447, 'disorderly': 20448, 'intoxication': 20449, 'cayman': 20450, 'jayne': 20451, 'krentz': 20452, 'saltless': 20453, 'ulterior': 20454, 'masterwork': 20455, 'indictments': 20456, 'eli': 20457, 'millionsmarchsf': 20458, 'voltage': 20459, 'trumpland': 20460, 'victories': 20461, 'friendshipgoals': 20462, 'storylines': 20463, 'crete': 20464, 'psylandorian': 20465, 'bookworm': 20466, 'shareholdaz': 20467, 'ghostwriters': 20468, 'blob': 20469, 'satyajit': 20470, 'horsepower': 20471, 'bathtub': 20472, 'cutoff': 20473, 'gladys': 20474, 'principle': 20475, 'renewables': 20476, 'wh': 20477, 'bourdain': 20478, 'breathalyzer': 20479, 'leviathan': 20480, 'sonar': 20481, 'seatbacks': 20482, 'hentai': 20483, 'starnes': 20484, 'subvert': 20485, 'urkel': 20486, 'foreheads': 20487, 'rappers': 20488, 'waithe': 20489, 'shriver': 20490, 'fark': 20491, 'gulag': 20492, 'siberia': 20493, 'attire': 20494, 'ogre': 20495, 'imaginable': 20496, 'mechanism': 20497, 'frills': 20498, 'pomp': 20499, 'chillingly': 20500, 'reappear': 20501, 'tort': 20502, 'hasty': 20503, 'overthink': 20504, 'launchers': 20505, 'broderick': 20506, 'wonderfully': 20507, 'harrington': 20508, 'wolfman': 20509, 'diphtheria': 20510, 'shylock': 20511, 'shyster': 20512, 'stereotypical': 20513, 'pizzeria': 20514, 'couscous': 20515, 'retail': 20516, 'bueller': 20517, 'litterer': 20518, 'expedite': 20519, 'interrogations': 20520, 'epipen': 20521, 'swag': 20522, 'rainstorms': 20523, 'pummel': 20524, 'shitshow': 20525, 'windowsill': 20526, 'millenial': 20527, 'immunization': 20528, 'jarrel': 20529, 'extroverts': 20530, 'inoperable': 20531, 'albinism': 20532, 'zhang': 20533, 'ziyi': 20534, 'nullify': 20535, 'footlong': 20536, 'teriyaki': 20537, 'convulse': 20538, 'mailman': 20539, 'unreasonable': 20540, 'spittle': 20541, 'sexton': 20542, 'deutsch': 20543, 'croak': 20544, 'persecution': 20545, 'reassign': 20546, 'underpublicized': 20547, 'intestinal': 20548, 'mole': 20549, 'mallets': 20550, 'sprinkle': 20551, 'yarn': 20552, 'maxim': 20553, 'dent': 20554, 'tuxedoed': 20555, 'feingold': 20556, 'cameos': 20557, 'nsync': 20558, 'soundandfury': 20559, 'wordpress': 20560, 'worrisome': 20561, 'usage': 20562, 'incessant': 20563, 'oversharing': 20564, 'mademoiselle': 20565, 'tummy': 20566, 'demonstration': 20567, 'rendezvous': 20568, 'als': 20569, 'zell': 20570, 'kinder': 20571, 'marley': 20572, 'mayim': 20573, 'bialik': 20574, 'kellen': 20575, 'segregation': 20576, 'chests': 20577, 'som': 20578, 'horowitz': 20579, 'biv': 20580, 'devoe': 20581, 'grabbies': 20582, 'jameela': 20583, 'jamil': 20584, 'insinuate': 20585, 'digger': 20586, 'southpaw': 20587, 'soundtrack': 20588, 'renegotiation': 20589, 'wiser': 20590, 'pore': 20591, 'shopkeeper': 20592, 'memorize': 20593, 'maga': 20594, 'bugaboo': 20595, 'merck': 20596, 'philosophical': 20597, 'emeritus': 20598, 'canonizations': 20599, 'nikolai': 20600, 'rimsky': 20601, 'korsakov': 20602, 'inventive': 20603, 'orchestrator': 20604, 'caitlin': 20605, 'enclosures': 20606, 'miscellaneous': 20607, 'asmr': 20608, 'espresso': 20609, 'middleagedschmovies': 20610, 'accessibility': 20611, 'euphoric': 20612, 'postcard': 20613, 'meenakshi': 20614, 'amman': 20615, 'retool': 20616, 'tasteless': 20617, 'restraint': 20618, 'outbreeding': 20619, 'intelligentsia': 20620, 'hillshire': 20621, 'bratwurst': 20622, 'frock': 20623, 'underrate': 20624, 'moles': 20625, 'deadlines': 20626, 'strzok': 20627, 'pissy': 20628, 'gaby': 20629, 'hoffmann': 20630, 'wasters': 20631, 'troublemakers': 20632, 'noam': 20633, 'chomsky': 20634, 'panera': 20635, 'plausible': 20636, 'deniability': 20637, 'swedes': 20638, 'penetration': 20639, 'preamble': 20640, 'derangement': 20641, 'chillax': 20642, 'myrtle': 20643, 'ancestral': 20644, 'prowl': 20645, 'enda': 20646, 'gopers': 20647, 'coogler': 20648, 'wakanda': 20649, 'mcmaster': 20650, 'alignment': 20651, 'variables': 20652, 'sunblock': 20653, 'botox': 20654, 'instinct': 20655, 'ideological': 20656, 'stressfest': 20657, 'krypton': 20658, 'assignment': 20659, 'mirren': 20660, 'infatuate': 20661, 'oversimplify': 20662, 'insecticide': 20663, 'sufficiently': 20664, 'sweepstakes': 20665, 'megadonor': 20666, 'transaction': 20667, 'klutz': 20668, 'ndchen': 20669, 'italia': 20670, 'panoramic': 20671, 'saunders': 20672, 'phalanx': 20673, 'hungrily': 20674, 'interface': 20675, 'ignatians': 20676, 'penetrate': 20677, 'databases': 20678, 'droege': 20679, 'slosh': 20680, 'albarn': 20681, 'denmark': 20682, 'freshmen': 20683, 'safran': 20684, 'foer': 20685, 'bidder': 20686, 'zenith': 20687, 'gamespace': 20688, 'dopec': 20689, 'spicey': 20690, 'sla': 20691, 'redd': 20692, 'ethicists': 20693, 'farage': 20694, 'willam': 20695, 'hallucinate': 20696, 'stragglers': 20697, 'padres': 20698, 'earthquakes': 20699, 'vacationer': 20700, 'omniscient': 20701, 'yngwie': 20702, 'malmsteen': 20703, 'giuliana': 20704, 'rancic': 20705, 'connell': 20706, 'dearly': 20707, 'ventriloquist': 20708, 'azealia': 20709, 'intruder': 20710, 'unshakeable': 20711, 'bassnectar': 20712, 'disinvest': 20713, 'preschoolers': 20714, 'endlessly': 20715, 'leotard': 20716, 'choreograph': 20717, 'multidisciplinary': 20718, 'rightful': 20719, 'udc': 20720, 'lifeblood': 20721, 'globetrotters': 20722, 'firecracker': 20723, 'puzo': 20724, 'mcgovern': 20725, 'perkins': 20726, 'caine': 20727, 'aiello': 20728, 'shalhoub': 20729, 'braindead': 20730, 'fivethirtyeight': 20731, 'aggregator': 20732, 'templeton': 20733, 'doubletree': 20734, 'mechanical': 20735, 'fervor': 20736, 'capitalists': 20737, 'connery': 20738, 'creepiest': 20739, 'maven': 20740, 'craggy': 20741, 'ogres': 20742, 'gaulle': 20743, 'pompom': 20744, 'emile': 20745, 'hirsch': 20746, 'errant': 20747, 'keystroke': 20748, 'apocalypto': 20749, 'baio': 20750, 'relentlessly': 20751, 'tarot': 20752, 'khaled': 20753, 'shinto': 20754, 'priestess': 20755, 'homepod': 20756, 'cutlet': 20757, 'munchos': 20758, 'disodium': 20759, 'guanylate': 20760, 'tankers': 20761, 'safire': 20762, 'whoppers': 20763, 'definitions': 20764, 'mcdreamy': 20765, 'que': 20766, 'vivan': 20767, 'theda': 20768, 'hammel': 20769, 'lyudska': 20770, 'podoba': 20771, 'sexualities': 20772, 'ee': 20773, 'ppm': 20774, 'unrewarded': 20775, 'paz': 20776, 'airliners': 20777, 'salve': 20778, 'chap': 20779, 'sittin': 20780, 'liberian': 20781, 'dignitary': 20782, 'roscoe': 20783, 'xfl': 20784, 'genitalia': 20785, 'themeless': 20786, 'hooligans': 20787, 'shapewear': 20788, 'hitchhiker': 20789, 'irregular': 20790, 'allowable': 20791, 'amperage': 20792, 'testicles': 20793, 'attractiveness': 20794, 'romanian': 20795, 'grift': 20796, 'mcveigh': 20797, 'cecil': 20798, 'illegalize': 20799, 'trumpacandy': 20800, 'gloriously': 20801, 'brainer': 20802, 'lookers': 20803, 'passers': 20804, 'vale': 20805, 'boothe': 20806, 'thones': 20807, 'adelanto': 20808, 'chixx': 20809, 'floodgates': 20810, 'tequila': 20811, 'mediaeval': 20812, 'fortress': 20813, 'monemvasia': 20814, 'inspo': 20815, 'trivial': 20816, 'redskins': 20817, 'redstate': 20818, 'leon': 20819, 'cary': 20820, 'elwes': 20821, 'biggie': 20822, 'felonies': 20823, 'mariachi': 20824, 'fattest': 20825, 'spangle': 20826, 'doorstops': 20827, 'doorblocker': 20828, 'annulment': 20829, 'goper': 20830, 'broccoli': 20831, 'duetting': 20832, 'woodworking': 20833, 'carhartt': 20834, 'thong': 20835, 'magnanimous': 20836, 'relish': 20837, 'sinead': 20838, 'herbie': 20839, 'anthropomorphologists': 20840, 'jenni': 20841, 'konner': 20842, 'hq': 20843, 'arkansans': 20844, 'rinkins': 20845, 'harsher': 20846, 'verdugo': 20847, 'creatives': 20848, 'transvestite': 20849, 'dakotan': 20850, 'quantitative': 20851, 'gail': 20852, 'saltz': 20853, 'trexit': 20854, 'sustenance': 20855, 'feijoada': 20856, 'methushael': 20857, 'lamech': 20858, 'petticoats': 20859, 'anteater': 20860, 'suicides': 20861, 'lipnicki': 20862, 'spaceballs': 20863, 'continents': 20864, 'calculus': 20865, 'watermelons': 20866, 'austen': 20867, 'puig': 20868, 'deductible': 20869, 'felipe': 20870, 'smack': 20871, 'distributor': 20872, 'unchecked': 20873, 'industrialization': 20874, 'neanderthal': 20875, 'bloodlust': 20876, 'flynt': 20877, 'presex': 20878, 'girders': 20879, 'geekier': 20880, 'dominos': 20881, 'koran': 20882, 'butternut': 20883, 'majesty': 20884, 'walkers': 20885, 'pushier': 20886, 'rollerball': 20887, 'slime': 20888, 'cocoon': 20889, 'ooze': 20890, 'chaka': 20891, 'meara': 20892, 'maitre': 20893, 'everlast': 20894, 'clarksburg': 20895, 'blotter': 20896, 'raiser': 20897, 'baftas': 20898, 'fanciful': 20899, 'rentboys': 20900, 'rentboy': 20901, 'gremlin': 20902, 'rhinoceros': 20903, 'birkenstocks': 20904, 'surmise': 20905, 'heartache': 20906, 'tca': 20907, 'mercator': 20908, 'lovelorn': 20909, 'newswoman': 20910, 'vibrant': 20911, 'bernanke': 20912, 'grooviest': 20913, 'spectators': 20914, 'bluefish': 20915, 'saor': 20916, 'venetian': 20917, 'pok': 20918, 'polack': 20919, 'rosh': 20920, 'hashasha': 20921}
print("The count of words",tokenizer.word_counts)
The count of words OrderedDict([('thirtysomething', 1), ('scientists', 103), ('unveil', 126), ('doomsday', 5), ('clock', 21), ('hair', 62), ('loss', 39), ('dem', 4), ('rep', 27), ('totally', 55), ('nail', 30), ('congress', 141), ('fall', 122), ('short', 46), ('gender', 31), ('racial', 22), ('equality', 25), ('eat', 171), ('veggies', 2), ('deliciously', 1), ('different', 64), ('recipes', 30), ('inclement', 2), ('weather', 34), ('prevent', 54), ('liar', 8), ('get', 1012), ('work', 347), ('mother', 147), ('come', 339), ('pretty', 119), ('close', 80), ('use', 321), ('word', 132), ('stream', 21), ('correctly', 5), ('white', 388), ('inheritance', 3), ('ways', 127), ('file', 31), ('tax', 116), ('less', 70), ('stress', 52), ('richard', 24), ('branson', 1), ('global', 53), ('warm', 24), ('donation', 13), ('nearly', 39), ('much', 150), ('cost', 58), ('fail', 128), ('balloon', 13), ('trip', 75), ('shadow', 18), ('government', 126), ('large', 27), ('meet', 238), ('marriott', 1), ('conference', 28), ('room', 110), ('b', 36), ('lot', 81), ('parent', 281), ('know', 375), ('scenario', 4), ('lesbian', 16), ('consider', 56), ('father', 131), ('indiana', 12), ('amaze', 49), ('one', 587), ('amanda', 4), ('peet', 3), ('tell', 313), ('daughter', 87), ('sex', 171), ('special', 67), ('hug', 23), ('regard', 2), ('current', 26), ('treatments', 2), ('ebola', 41), ('chris', 69), ('christie', 33), ('suggest', 57), ('hillary', 215), ('clinton', 342), ('blame', 63), ('boko', 3), ('haram', 3), ('kidnap', 12), ('hundreds', 38), ('schoolgirls', 2), ('ford', 30), ('develop', 39), ('new', 1684), ('suv', 5), ('run', 236), ('purely', 2), ('gasoline', 3), ('uber', 34), ('ceo', 104), ('travis', 4), ('kalanick', 3), ('step', 82), ('trump', 1836), ('economic', 26), ('advisory', 4), ('council', 21), ('area', 501), ('boy', 100), ('enter', 63), ('jump', 35), ('touch', 51), ('top', 152), ('doorways', 1), ('phase', 15), ('man', 1536), ('travel', 89), ('gurney', 2), ('leave', 267), ('person', 96), ('disabilities', 12), ('behind', 107), ('lin', 12), ('manuel', 11), ('miranda', 15), ('would', 283), ('like', 489), ('remind', 73), ('put', 181), ('phone', 87), ('away', 136), ('journalists', 26), ('kill', 292), ('target', 58), ('international', 30), ('press', 63), ('rise', 126), ('guard', 33), ('video', 230), ('game', 218), ('strict', 7), ('order', 126), ('repeatedly', 21), ('pace', 13), ('stretch', 12), ('hallway', 1), ('live', 331), ('cat', 86), ('scar', 16), ('shelter', 18), ('even', 188), ('look', 386), ('bill', 276), ('shoot', 269), ('republicans', 101), ('strongly', 10), ('support', 140), ('obamacare', 84), ('secret', 100), ('service', 97), ('agent', 33), ('david', 61), ('alan', 14), ('grier', 1), ('fan', 183), ('orange', 15), ('era', 34), ('grow', 84), ('divide', 20), ('things', 225), ('learn', 151), ('first', 472), ('month', 86), ('baby', 199), ('lamelo', 1), ('ball', 44), ('score', 30), ('point', 104), ('single', 127), ('high', 200), ('school', 323), ('basketball', 17), ('bi', 4), ('take', 518), ('years', 268), ('closet', 19), ('say', 792), ('essential', 9), ('life', 410), ('lessons', 56), ('grandma', 50), ('teenage', 18), ('gunfight', 1), ('isis', 77), ('older', 43), ('still', 371), ('young', 78), ('heart', 85), ('lead', 153), ('probability', 1), ('researchers', 37), ('confound', 4), ('three', 83), ('coworkers', 29), ('wear', 140), ('shirt', 55), ('color', 56), ('day', 523), ('york', 133), ('introduce', 140), ('shoe', 27), ('share', 102), ('program', 69), ('city', 137), ('pedestrians', 3), ('beyonc', 21), ('sculpt', 1), ('cheese', 33), ('strangely', 2), ('allure', 3), ('expansive', 3), ('obama', 428), ('state', 338), ('union', 61), ('speech', 109), ('patent', 8), ('law', 134), ('entomology', 1), ('film', 155), ('robert', 51), ('altman', 3), ('star', 285), ('gray', 13), ('prove', 67), ('bad', 139), ('police', 247), ('woman', 549), ('make', 836), ('story', 128), ('attack', 212), ('two', 157), ('men', 142), ('hat', 49), ('update', 60), ('naacp', 9), ('demand', 105), ('minority', 15), ('representation', 5), ('upn', 1), ('best', 251), ('clothe', 47), ('child', 219), ('florist', 2), ('turn', 170), ('gay', 182), ('couple', 181), ('want', 362), ('supreme', 123), ('court', 200), ('hear', 130), ('case', 128), ('process', 32), ('end', 187), ('walk', 113), ('dead', 201), ('strangers', 17), ('google', 51), ('project', 38), ('deliver', 55), ('critical', 11), ('info', 8), ('refugees', 41), ('smartphones', 2), ('history', 126), ('textbook', 6), ('hatred', 7), ('alive', 19), ('students', 129), ('ridiculously', 5), ('successful', 20), ('people', 431), ('think', 361), ('differently', 6), ('report', 713), ('bridge', 20), ('probably', 79), ('whole', 62), ('mess', 24), ('bat', 18), ('texas', 77), ('urge', 89), ('style', 58), ('immigration', 60), ('crackdown', 14), ('tom', 59), ('hanks', 9), ('brag', 14), ('smokin', 2), ('hot', 92), ('rita', 2), ('wilson', 18), ('marriage', 96), ('god', 145), ('strong', 25), ('bring', 145), ('back', 405), ('dinosaurs', 5), ('lgbt', 52), ('christians', 8), ('speak', 99), ('love', 313), ('sinner', 2), ('hate', 64), ('sin', 5), ('cut', 95), ('anymore', 33), ('handshake', 1), ('unusually', 2), ('angle', 3), ('velocity', 1), ('mom', 240), ('keep', 204), ('send', 119), ('newspaper', 25), ('clippings', 1), ('former', 111), ('classmates', 9), ('murder', 85), ('stop', 225), ('coed', 1), ('rec', 3), ('softball', 4), ('team', 108), ('trouble', 42), ('find', 534), ('enough', 132), ('hyper', 1), ('competitive', 5), ('ruin', 52), ('experience', 77), ('brutalist', 1), ('beaver', 2), ('construct', 7), ('paul', 130), ('rudolph', 1), ('inspire', 84), ('dam', 6), ('jindal', 4), ('westboro', 2), ('baptist', 3), ('members', 47), ('protest', 103), ('funerals', 2), ('face', 197), ('arrest', 73), ('gop', 277), ('congressman', 66), ('may', 213), ('vote', 193), ('president', 260), ('donald', 478), ('latest', 67), ('attempt', 96), ('repeal', 51), ('seth', 19), ('meyers', 16), ('sick', 56), ('suicide', 51), ('bomb', 63), ('spot', 85), ('warn', 163), ('sign', 127), ('department', 94), ('americans', 296), ('abroad', 11), ('avoid', 63), ('lame', 10), ('amsterdam', 4), ('windmill', 1), ('tour', 55), ('meatless', 3), ('monday', 37), ('portuguese', 2), ('mashup', 4), ('message', 69), ('facebook', 136), ('families', 42), ('miss', 161), ('flight', 51), ('passengers', 29), ('hop', 110), ('media', 131), ('closure', 8), ('need', 308), ('fender', 2), ('release', 195), ('hybrid', 3), ('gas', 39), ('electric', 17), ('guitar', 13), ('romney', 75), ('volunteer', 17), ('go', 593), ('door', 49), ('let', 196), ('supporters', 47), ('friday', 54), ('talk', 259), ('prelude', 2), ('silly', 6), ('season', 146), ('sparkle', 2), ('year', 587), ('old', 424), ('next', 175), ('crush', 31), ('hollywood', 71), ('biggest', 47), ('endure', 9), ('long', 156), ('line', 144), ('oscars', 51), ('security', 102), ('screen', 45), ('congresswoman', 6), ('fight', 188), ('gun', 192), ('control', 113), ('almost', 52), ('lose', 205), ('violence', 96), ('raise', 91), ('kid', 276), ('productive', 9), ('start', 184), ('elizabeth', 45), ('warren', 35), ('pick', 84), ('win', 207), ('ohio', 38), ('democratic', 69), ('gubernatorial', 5), ('primary', 37), ('bite', 49), ('argument', 21), ('ear', 8), ('longtime', 15), ('reader', 10), ('lib', 3), ('slave', 14), ('mainstream', 10), ('bias', 12), ('sit', 93), ('wideawakepatriot', 1), ('com', 26), ('beijing', 8), ('fire', 197), ('extinguish', 2), ('massive', 58), ('five', 48), ('alarm', 22), ('burn', 70), ('cloud', 9), ('smog', 4), ('china', 71), ('intensify', 3), ('pressure', 26), ('north', 139), ('korea', 82), ('defiant', 14), ('sanders', 125), ('camp', 47), ('sheep', 1), ('watch', 342), ('mind', 70), ('toronto', 6), ('festival', 31), ('jake', 14), ('gyllenhaal', 5), ('demolition', 3), ('stun', 58), ('lobster', 10), ('super', 95), ('pac', 17), ('political', 91), ('consultants', 1), ('oilman', 1), ('wild', 38), ('ride', 43), ('active', 10), ('shooter', 28), ('endless', 7), ('background', 16), ('hum', 2), ('modern', 31), ('american', 271), ('axelrod', 3), ('see', 301), ('complex', 12), ('alternative', 14), ('sleater', 1), ('kinney', 2), ('bowie', 10), ('rebel', 33), ('anthem', 20), ('kirsten', 6), ('gillibrand', 6), ('regret', 38), ('call', 391), ('al', 63), ('franken', 12), ('quit', 32), ('sooner', 4), ('well', 81), ('fargo', 7), ('sue', 46), ('bar', 92), ('daca', 11), ('recipients', 7), ('student', 104), ('loan', 20), ('historical', 39), ('archive', 35), ('publick', 1), ('spectacle', 2), ('israel', 51), ('pass', 115), ('cement', 5), ('exclusive', 23), ('nation', 412), ('benjamin', 2), ('netanyahu', 22), ('onion', 57), ('social', 109), ('crack', 45), ('sexual', 138), ('harassment', 42), ('ban', 129), ('women', 417), ('platform', 15), ('promo', 3), ('hint', 25), ('stephen', 63), ('colbert', 43), ('unleash', 9), ('election', 177), ('show', 416), ('banksy', 5), ('return', 134), ('trademark', 4), ('rat', 67), ('bobby', 9), ('donors', 14), ('benefit', 40), ('administration', 77), ('drink', 133), ('driver', 45), ('zone', 24), ('egyptian', 9), ('wish', 98), ('scream', 38), ('protester', 9), ('husband', 55), ('bonkers', 4), ('millennial', 9), ('number', 87), ('homeless', 45), ('america', 246), ('rapidly', 11), ('majority', 67), ('instance', 1), ('track', 61), ('occur', 9), ('immediately', 32), ('visit', 119), ('buffalo', 6), ('wing', 26), ('groundbreaking', 5), ('study', 288), ('gratification', 4), ('deliberately', 2), ('postpone', 6), ('nick', 21), ('cannon', 9), ('respond', 59), ('mariah', 9), ('carey', 11), ('engagement', 18), ('way', 300), ('midlife', 4), ('obesity', 11), ('speed', 30), ('alzheimer', 16), ('endorsements', 4), ('bedroom', 15), ('ceiling', 17), ('hours', 79), ('diet', 33), ('poor', 47), ('improve', 33), ('decades', 28), ('effort', 35), ('chemists', 1), ('overseas', 5), ('nano', 1), ('breakthrough', 10), ('produce', 19), ('section', 25), ('burst', 20), ('laughter', 6), ('ferrell', 4), ('casual', 12), ('remark', 15), ('apples', 2), ('dad', 175), ('hand', 125), ('worst', 52), ('audition', 7), ('ever', 154), ('danger', 7), ('play', 152), ('paddle', 5), ('chew', 13), ('gum', 13), ('sing', 41), ('build', 95), ('simultaneously', 6), ('help', 249), ('million', 163), ('local', 172), ('fear', 80), ('snake', 14), ('increase', 69), ('snakebite', 1), ('vespa', 1), ('corporation', 11), ('enchant', 7), ('another', 160), ('slight', 5), ('little', 201), ('smithereens', 1), ('singer', 30), ('pat', 12), ('dinizio', 1), ('standards', 10), ('lower', 33), ('second', 147), ('search', 65), ('fridge', 6), ('miley', 13), ('cyrus', 15), ('wreck', 14), ('could', 317), ('kelly', 45), ('clarkson', 6), ('cover', 121), ('yet', 76), ('mirror', 20), ('flip', 24), ('sideways', 6), ('upside', 8), ('airport', 41), ('business', 125), ('th', 113), ('post', 130), ('partum', 1), ('depression', 35), ('prince', 63), ('harry', 49), ('rihanna', 11), ('test', 94), ('hiv', 23), ('together', 79), ('doodle', 7), ('hang', 38), ('heartbreak', 4), ('confirm', 72), ('rumor', 16), ('scatter', 2), ('ash', 10), ('untrue', 2), ('historians', 10), ('goodfellas', 1), ('youtube', 19), ('clip', 20), ('fragment', 1), ('larger', 10), ('agriculture', 10), ('locate', 9), ('perfect', 89), ('goat', 6), ('activist', 22), ('remember', 92), ('mile', 11), ('cocksucker', 1), ('beat', 67), ('motherfucker', 3), ('hero', 43), ('cop', 128), ('save', 167), ('girl', 120), ('wed', 117), ('rnc', 29), ('leader', 59), ('tone', 7), ('wheelchair', 12), ('bind', 13), ('prefer', 17), ('pep', 8), ('rally', 57), ('anti', 135), ('abortion', 66), ('legislation', 24), ('push', 86), ('check', 91), ('cnn', 57), ('pal', 12), ('tsarnaevs', 1), ('castros', 1), ('family', 316), ('tie', 44), ('available', 20), ('announce', 211), ('plan', 341), ('stuff', 52), ('quietly', 45), ('stare', 4), ('russell', 10), ('simmons', 6), ('nomination', 27), ('open', 220), ('band', 58), ('among', 38), ('crowd', 47), ('intermission', 2), ('gods', 4), ('shy', 9), ('friend', 137), ('experiment', 20), ('personality', 17), ('rick', 36), ('perry', 28), ('propose', 27), ('border', 43), ('wall', 94), ('qatar', 9), ('covert', 2), ('train', 79), ('syrian', 53), ('u', 510), ('rubio', 54), ('cruz', 82), ('board', 56), ('jay', 27), ('inslee', 3), ('smash', 16), ('town', 87), ('hall', 51), ('solar', 23), ('power', 138), ('mech', 1), ('suit', 41), ('climate', 138), ('change', 289), ('password', 7), ('grotesque', 9), ('combination', 4), ('children', 150), ('name', 197), ('birthdays', 3), ('potter', 17), ('book', 151), ('stay', 77), ('meme', 6), ('surprise', 116), ('christian', 43), ('weightlifter', 2), ('bend', 7), ('iron', 10), ('asu', 1), ('gsv', 1), ('teachers', 30), ('tech', 37), ('tool', 21), ('movements', 3), ('reveal', 220), ('along', 26), ('blue', 47), ('collar', 7), ('democrats', 99), ('party', 227), ('economy', 44), ('stupid', 34), ('draft', 15), ('biden', 84), ('debut', 41), ('tv', 125), ('ad', 95), ('stomach', 12), ('set', 129), ('aside', 14), ('synthetic', 2), ('additives', 1), ('minutes', 91), ('figure', 69), ('digest', 3), ('choose', 31), ('kavanaugh', 37), ('nominee', 30), ('respect', 28), ('channel', 37), ('solange', 5), ('knowles', 1), ('perfectly', 42), ('recreate', 9), ('album', 43), ('kanye', 28), ('west', 56), ('kim', 76), ('kardashian', 51), ('provide', 41), ('blueprint', 3), ('true', 57), ('vmas', 5), ('south', 72), ('dakota', 20), ('ask', 246), ('water', 97), ('crop', 9), ('weekend', 62), ('pledge', 40), ('epidemic', 21), ('alexa', 3), ('home', 257), ('record', 119), ('happen', 129), ('data', 50), ('tiger', 18), ('earl', 3), ('woods', 12), ('exasperate', 3), ('huckabee', 32), ('corps', 5), ('feel', 199), ('pain', 21), ('non', 62), ('priest', 18), ('charge', 79), ('molestation', 8), ('finally', 152), ('ramble', 4), ('vilsack', 4), ('shut', 56), ('fuck', 177), ('cabinet', 25), ('bravery', 4), ('teen', 135), ('bikini', 16), ('right', 318), ('mcdonald', 31), ('chill', 17), ('detail', 41), ('myanmar', 12), ('horrific', 11), ('campaign', 233), ('rohingya', 12), ('arizona', 21), ('ice', 85), ('tea', 20), ('foot', 31), ('tall', 20), ('can', 6), ('portraits', 9), ('give', 376), ('voice', 73), ('poorest', 1), ('big', 226), ('house', 424), ('reauthorizes', 1), ('controversial', 32), ('surveillance', 15), ('bosley', 2), ('secretary', 83), ('nap', 13), ('move', 177), ('kitchen', 24), ('movies', 40), ('every', 226), ('minotaur', 1), ('wonder', 70), ('bash', 14), ('head', 137), ('dare', 18), ('wander', 7), ('labyrinth', 2), ('shave', 14), ('cologned', 1), ('grandpa', 13), ('rake', 2), ('pussy', 7), ('rule', 128), ('punish', 10), ('contractors', 4), ('cheat', 11), ('endanger', 21), ('workers', 54), ('san', 38), ('diego', 7), ('zoo', 27), ('acquire', 24), ('chinese', 62), ('advice', 47), ('rollout', 2), ('terrible', 36), ('intervene', 1), ('soldier', 32), ('receive', 76), ('presidential', 110), ('thumb', 10), ('award', 100), ('mortgage', 12), ('reform', 58), ('progressives', 5), ('director', 79), ('hbo', 14), ('jam', 112), ('foley', 2), ('documentary', 40), ('movie', 127), ('childhood', 17), ('truth', 40), ('sleep', 110), ('really', 253), ('solve', 29), ('problems', 43), ('annoy', 41), ('movers', 2), ('expect', 60), ('client', 6), ('belong', 6), ('toe', 11), ('race', 109), ('essay', 16), ('paranoia', 1), ('cause', 81), ('frenzy', 3), ('northwestern', 1), ('university', 51), ('argentina', 7), ('tighten', 5), ('anticipation', 3), ('numerous', 5), ('criminals', 9), ('arrive', 30), ('g', 30), ('senior', 27), ('citizen', 11), ('shake', 40), ('diminish', 1), ('bawdy', 1), ('limerick', 1), ('recall', 68), ('fill', 53), ('gratitude', 10), ('sight', 23), ('customer', 35), ('nice', 43), ('restaurant', 79), ('jeans', 8), ('disastrous', 7), ('swimsuit', 10), ('space', 59), ('ideas', 47), ('small', 75), ('kitchens', 1), ('stranger', 28), ('creators', 10), ('keen', 2), ('viewers', 23), ('notice', 29), ('twinge', 2), ('disappointment', 4), ('hide', 47), ('scene', 38), ('colleagues', 11), ('temporary', 4), ('transition', 19), ('full', 105), ('time', 594), ('role', 54), ('sultan', 1), ('brunei', 1), ('horrify', 42), ('geologists', 4), ('uncover', 16), ('millions', 62), ('rock', 98), ('sprawl', 2), ('mass', 63), ('grave', 22), ('apart', 21), ('easily', 10), ('asghar', 2), ('farhadi', 2), ('elly', 1), ('iowa', 50), ('poll', 142), ('candidate', 89), ('cheeseburger', 5), ('bisexual', 4), ('half', 78), ('understand', 30), ('barack', 25), ('fourth', 32), ('risk', 65), ('iraq', 55), ('threaten', 79), ('islamic', 22), ('shit', 91), ('leadership', 24), ('mistake', 48), ('roger', 20), ('goodell', 5), ('brilliant', 13), ('innovative', 8), ('write', 102), ('whiteboard', 4), ('underline', 1), ('salute', 7), ('cardboard', 9), ('cutout', 4), ('rich', 37), ('richer', 4), ('boston', 23), ('judge', 105), ('apple', 60), ('enforcement', 9), ('examine', 9), ('iphone', 30), ('drug', 103), ('teach', 74), ('teens', 46), ('resist', 10), ('psychiatrist', 1), ('constant', 11), ('comey', 42), ('expose', 24), ('hypocrisy', 15), ('email', 121), ('joe', 56), ('slam', 62), ('stalin', 3), ('character', 66), ('actually', 147), ('afford', 19), ('coffee', 52), ('mug', 13), ('chat', 9), ('system', 71), ('bank', 62), ('regulation', 6), ('wink', 3), ('nod', 8), ('mike', 83), ('pence', 65), ('stand', 103), ('charlottesville', 21), ('marco', 33), ('struggle', 98), ('machine', 47), ('steven', 20), ('spielberg', 13), ('netflix', 51), ('qualify', 7), ('lazier', 1), ('accomplish', 6), ('pitch', 21), ('ladies', 12), ('squadgoals', 1), ('atlanta', 13), ('falcon', 4), ('obese', 12), ('cry', 42), ('picnic', 6), ('table', 55), ('urban', 22), ('center', 65), ('recommend', 59), ('voters', 103), ('weird', 55), ('thing', 153), ('candidates', 62), ('lie', 74), ('buzzfeed', 5), ('editors', 8), ('unsure', 25), ('spin', 15), ('petraeus', 5), ('reason', 127), ('great', 118), ('marine', 20), ('shorten', 3), ('slogan', 1), ('pill', 9), ('switch', 20), ('debilitate', 6), ('side', 60), ('effect', 28), ('glenn', 7), ('angry', 25), ('darkly', 1), ('sad', 40), ('harvey', 40), ('weinstein', 23), ('allegations', 46), ('pic', 8), ('simone', 2), ('biles', 2), ('mere', 1), ('mortal', 4), ('force', 188), ('pathetically', 1), ('comb', 4), ('familiar', 6), ('asleep', 12), ('previous', 15), ('night', 159), ('criticize', 33), ('without', 135), ('self', 203), ('esteem', 7), ('celebs', 8), ('red', 90), ('carpet', 36), ('labor', 40), ('rethink', 7), ('miracle', 18), ('playlist', 7), ('cutesy', 1), ('clean', 68), ('supply', 17), ('michele', 6), ('bachmann', 6), ('thankful', 16), ('die', 245), ('sikh', 9), ('mechanic', 4), ('steal', 60), ('bus', 56), ('late', 64), ('moose', 1), ('strike', 63), ('blow', 64), ('takeover', 6), ('ready', 82), ('lol', 4), ('awaken', 12), ('trailer', 61), ('jar', 34), ('binks', 1), ('complete', 59), ('idiot', 22), ('forget', 67), ('mouth', 39), ('nose', 11), ('vegetable', 4), ('dow', 5), ('chemical', 16), ('andrew', 16), ('liveris', 1), ('manufacture', 8), ('personal', 71), ('memory', 27), ('governor', 54), ('mario', 10), ('cuomo', 15), ('treat', 53), ('occasion', 4), ('troop', 21), ('gradually', 1), ('withdraw', 8), ('deploy', 12), ('unmarked', 1), ('truck', 35), ('ted', 72), ('danson', 2), ('tonight', 27), ('interview', 74), ('audra', 2), ('celebrate', 121), ('lgbtq', 41), ('community', 71), ('nyc', 47), ('decide', 67), ('dress', 81), ('entirely', 16), ('purple', 7), ('provision', 5), ('republican', 106), ('appropriations', 2), ('commercial', 39), ('yoga', 22), ('narration', 1), ('fatal', 11), ('hourly', 2), ('aphid', 1), ('birth', 61), ('dave', 15), ('matthews', 1), ('apologize', 68), ('dump', 23), ('pound', 49), ('human', 104), ('onto', 35), ('boat', 24), ('credit', 36), ('card', 68), ('miles', 23), ('samsung', 8), ('owners', 23), ('galaxy', 14), ('try', 251), ('listen', 55), ('lana', 3), ('del', 7), ('rey', 3), ('honeymoon', 3), ('uw', 1), ('whitewater', 2), ('chancellor', 9), ('reprimand', 3), ('skincare', 2), ('product', 27), ('blackface', 5), ('realistic', 8), ('planner', 8), ('include', 35), ('weeks', 37), ('purchase', 54), ('palm', 11), ('tree', 49), ('coconut', 1), ('luigi', 4), ('drunkenly', 3), ('couch', 18), ('company', 147), ('desperate', 42), ('hire', 52), ('someone', 82), ('job', 200), ('complain', 20), ('evolution', 13), ('text', 19), ('language', 15), ('period', 15), ('shipwreck', 3), ('survivors', 32), ('disney', 41), ('cruise', 21), ('ship', 28), ('rupert', 5), ('murdoch', 5), ('nonsense', 11), ('concern', 58), ('fox', 70), ('census', 14), ('public', 111), ('library', 12), ('warrant', 3), ('congressional', 37), ('district', 16), ('musical', 23), ('parody', 17), ('millennials', 16), ('air', 86), ('ducts', 1), ('contain', 33), ('taunt', 11), ('schoolhouse', 2), ('suspend', 32), ('fec', 3), ('spit', 5), ('officials', 79), ('consumers', 14), ('counterfeit', 4), ('ticket', 27), ('ahead', 41), ('eclipse', 7), ('fbi', 74), ('prominent', 6), ('recruitment', 3), ('website', 47), ('positive', 22), ('justice', 81), ('sotomayor', 4), ('continue', 77), ('duties', 6), ('break', 246), ('shoulder', 11), ('user', 30), ('incredibly', 11), ('strap', 17), ('address', 67), ('indecency', 1), ('politics', 60), ('fcc', 16), ('round', 24), ('culture', 45), ('war', 236), ('longer', 52), ('busy', 26), ('buddy', 7), ('phil', 5), ('eh', 1), ('senate', 141), ('panel', 16), ('unanimously', 4), ('approve', 40), ('wray', 1), ('partnership', 4), ('adidas', 3), ('huge', 65), ('casey', 5), ('stage', 55), ('philly', 8), ('irish', 11), ('theater', 30), ('important', 49), ('heaven', 25), ('population', 23), ('assholes', 7), ('beg', 16), ('forgiveness', 7), ('last', 266), ('elle', 3), ('magazine', 49), ('accidentally', 46), ('airbrush', 3), ('naomi', 4), ('watts', 2), ('altogether', 3), ('tailspin', 1), ('station', 36), ('tent', 6), ('spray', 19), ('xenomorphs', 1), ('pray', 16), ('hobby', 11), ('elderly', 38), ('workout', 16), ('songs', 25), ('january', 13), ('meryl', 12), ('streep', 13), ('exactly', 32), ('shrek', 2), ('fairy', 6), ('godmother', 2), ('ceremony', 34), ('park', 98), ('friends', 125), ('shirtless', 10), ('around', 171), ('terrify', 52), ('fda', 38), ('something', 106), ('bananas', 6), ('black', 291), ('several', 21), ('days', 90), ('aspen', 1), ('boost', 26), ('opportunity', 20), ('zip', 7), ('code', 20), ('startup', 13), ('fraught', 1), ('negative', 14), ('early', 60), ('vow', 68), ('hackers', 17), ('russian', 62), ('olympic', 38), ('whistleblower', 4), ('world', 405), ('dope', 9), ('agency', 13), ('underserved', 2), ('worth', 51), ('math', 12), ('thank', 70), ('app', 28), ('pugs', 1), ('greatest', 32), ('internet', 71), ('morgan', 9), ('freeman', 2), ('snapchat', 5), ('hilariously', 12), ('etiquette', 6), ('weddings', 7), ('princess', 23), ('charlotte', 11), ('maybe', 18), ('fashionable', 2), ('christen', 2), ('teddy', 6), ('bear', 89), ('spark', 24), ('conversation', 56), ('flirt', 5), ('wait', 124), ('inform', 31), ('boyfriend', 52), ('mysterious', 23), ('harm', 12), ('rudy', 19), ('giuliani', 25), ('blab', 1), ('legal', 40), ('payments', 6), ('vietnam', 12), ('unorthodox', 1), ('guide', 77), ('meditation', 23), ('might', 100), ('habit', 29), ('real', 185), ('purpose', 14), ('hope', 59), ('solo', 14), ('ex', 77), ('fifa', 6), ('sepp', 2), ('blatter', 2), ('grope', 16), ('good', 239), ('porn', 26), ('hard', 73), ('lester', 4), ('holt', 3), ('begin', 108), ('debate', 168), ('reiterate', 3), ('homosexual', 9), ('dolphin', 9), ('highly', 16), ('sense', 34), ('nar', 2), ('fit', 37), ('vladimir', 10), ('putin', 40), ('florida', 68), ('trespass', 2), ('supermarket', 4), ('ben', 44), ('affleck', 14), ('vs', 27), ('maher', 18), ('butter', 11), ('cow', 15), ('sculpture', 6), ('caucus', 11), ('juggler', 3), ('juggle', 4), ('c', 64), ('hotel', 42), ('unfair', 3), ('competition', 10), ('kevin', 22), ('bacon', 15), ('already', 119), ('crib', 4), ('action', 50), ('commercials', 15), ('keystone', 7), ('pipeline', 15), ('death', 240), ('mentally', 19), ('ill', 17), ('custody', 12), ('homicide', 8), ('astronaut', 9), ('tim', 36), ('peake', 1), ('london', 34), ('marathon', 9), ('comfort', 24), ('throw', 115), ('compliment', 13), ('stick', 62), ('mint', 6), ('double', 43), ('stuf', 3), ('quarter', 10), ('whoa', 4), ('treadmill', 3), ('jeb', 37), ('bush', 173), ('sanctuary', 9), ('cities', 34), ('link', 65), ('muhammad', 14), ('ali', 14), ('parkinson', 4), ('dhs', 9), ('profile', 27), ('free', 139), ('sept', 6), ('paramedics', 1), ('realize', 109), ('elmo', 2), ('costume', 42), ('tap', 34), ('dennis', 6), ('hastert', 3), ('youth', 39), ('outreach', 4), ('money', 140), ('spend', 181), ('sake', 8), ('aide', 17), ('deny', 55), ('pose', 24), ('spokesman', 5), ('image', 41), ('saturn', 2), ('polar', 9), ('region', 9), ('anderson', 20), ('cooper', 20), ('box', 75), ('letter', 86), ('dumpster', 5), ('equifax', 4), ('breach', 10), ('toddler', 39), ('unsettle', 7), ('whatever', 29), ('possess', 3), ('kurt', 2), ('warner', 13), ('cheer', 28), ('wire', 12), ('haired', 1), ('goblin', 3), ('news', 187), ('lifelong', 7), ('mueller', 69), ('wife', 102), ('sandwich', 37), ('patriot', 5), ('devin', 8), ('mccourty', 1), ('accept', 55), ('many', 94), ('glass', 54), ('wine', 26), ('hey', 9), ('bernie', 93), ('rabbi', 3), ('rom', 4), ('j', 55), ('lo', 2), ('rod', 6), ('donate', 32), ('hurricane', 52), ('victims', 59), ('strange', 15), ('curse', 13), ('haunt', 24), ('cast', 47), ('wind', 24), ('relax', 13), ('practice', 33), ('bartender', 9), ('accuse', 80), ('plot', 21), ('poison', 14), ('john', 194), ('boehner', 31), ('earth', 85), ('rank', 19), ('planet', 49), ('prey', 4), ('lack', 37), ('diversity', 32), ('tweet', 111), ('anniversary', 51), ('sexy', 16), ('carl', 6), ('jr', 54), ('bowl', 53), ('latino', 24), ('arab', 11), ('view', 47), ('heritage', 9), ('asset', 4), ('refer', 26), ('bisquick', 1), ('impossibly', 1), ('easy', 47), ('pie', 10), ('monocle', 2), ('oil', 54), ('baron', 6), ('cigarette', 12), ('holder', 9), ('splinter', 3), ('clench', 2), ('teeth', 15), ('environmental', 10), ('merkel', 11), ('anywhere', 10), ('populism', 4), ('outrage', 27), ('price', 47), ('fast', 46), ('deplete', 6), ('renewable', 5), ('resource', 1), ('skyrocket', 7), ('downloadable', 3), ('content', 26), ('assassin', 5), ('creed', 2), ('syndicate', 1), ('factor', 13), ('monthly', 7), ('expense', 7), ('largemouth', 2), ('bass', 5), ('sass', 1), ('pope', 129), ('ii', 27), ('owner', 77), ('popemobile', 1), ('crisis', 75), ('delightful', 1), ('mid', 19), ('february', 15), ('afternoon', 10), ('powerful', 54), ('stories', 33), ('affect', 27), ('pearl', 8), ('randomly', 7), ('italy', 16), ('grandchild', 2), ('grandfather', 16), ('equally', 9), ('dread', 14), ('collaboration', 6), ('outdated', 5), ('career', 62), ('map', 27), ('astray', 1), ('hurt', 41), ('unfinished', 4), ('dark', 43), ('series', 65), ('storm', 34), ('batter', 4), ('northwest', 2), ('lebanon', 3), ('pm', 7), ('amid', 40), ('claim', 147), ('hold', 135), ('captive', 3), ('saudis', 9), ('upcoming', 32), ('road', 52), ('sound', 66), ('badass', 9), ('audio', 13), ('experts', 57), ('whiny', 3), ('irritate', 2), ('noise', 5), ('nunes', 9), ('uneventful', 1), ('past', 85), ('catch', 84), ('bore', 41), ('source', 38), ('mon', 5), ('us', 149), ('goddamn', 17), ('pulitzer', 10), ('greek', 11), ('bailout', 3), ('delay', 34), ('official', 51), ('legos', 2), ('teacher', 101), ('remixes', 1), ('rap', 29), ('boujee', 1), ('betsy', 18), ('devos', 21), ('senators', 35), ('wiesenthal', 1), ('painful', 18), ('age', 124), ('prison', 74), ('gwen', 6), ('stefani', 6), ('soul', 21), ('perform', 30), ('amas', 3), ('scott', 63), ('pruitt', 18), ('land', 56), ('fawn', 4), ('conservative', 24), ('shoppers', 3), ('shabaab', 1), ('fracture', 3), ('jihadism', 1), ('boss', 51), ('today', 97), ('guy', 211), ('sean', 42), ('dirty', 21), ('beard', 14), ('vince', 4), ('foster', 10), ('doors', 12), ('fundraiser', 4), ('surrender', 4), ('boys', 50), ('solemnly', 7), ('leap', 6), ('window', 32), ('colin', 16), ('kaepernick', 11), ('courageous', 4), ('las', 17), ('vegas', 22), ('create', 108), ('gofundme', 1), ('page', 32), ('granite', 2), ('engrave', 1), ('remake', 11), ('jimmy', 61), ('stewart', 25), ('marry', 53), ('freak', 42), ('intimidate', 5), ('ferry', 2), ('options', 15), ('son', 141), ('gap', 35), ('nasal', 1), ('version', 16), ('overdose', 6), ('naloxone', 1), ('review', 59), ('wrinkle', 5), ('pepper', 15), ('critic', 9), ('assure', 61), ('readers', 11), ('muslim', 65), ('norman', 4), ('lear', 3), ('common', 34), ('shonda', 2), ('rhimes', 2), ('explore', 30), ('inequality', 26), ('epix', 1), ('plantation', 2), ('motorcycle', 9), ('chance', 54), ('daily', 38), ('szep', 1), ('circus', 5), ('ultimate', 23), ('livingston', 2), ('montana', 13), ('promise', 77), ('pastor', 9), ('kaine', 18), ('serve', 33), ('event', 37), ('rugged', 2), ('sport', 69), ('utility', 1), ('vehicle', 7), ('mall', 28), ('handmaid', 5), ('tale', 25), ('focus', 49), ('dangers', 16), ('feminism', 13), ('amok', 2), ('anyways', 1), ('football', 51), ('recruit', 10), ('bold', 17), ('statement', 21), ('hemsworth', 9), ('elsa', 3), ('pataky', 1), ('sweet', 38), ('photo', 87), ('birthday', 70), ('question', 122), ('linger', 5), ('retirement', 38), ('issue', 108), ('olympics', 27), ('clearly', 56), ('buy', 122), ('performance', 44), ('grader', 32), ('reek', 2), ('urine', 12), ('stephon', 2), ('clark', 7), ('martin', 42), ('luther', 14), ('king', 85), ('launch', 77), ('empower', 20), ('bully', 34), ('rapper', 14), ('unbox', 1), ('grammys', 17), ('cute', 23), ('edit', 10), ('farley', 3), ('mission', 20), ('impossible', 15), ('fish', 37), ('wildlife', 19), ('photos', 104), ('perch', 4), ('eye', 115), ('screenwriting', 3), ('handle', 32), ('week', 174), ('range', 14), ('missile', 27), ('coast', 24), ('snub', 3), ('riyadh', 1), ('arrival', 7), ('tensions', 9), ('appeal', 24), ('basic', 14), ('intelligence', 26), ('definitive', 6), ('list', 99), ('foods', 13), ('cozy', 4), ('place', 133), ('location', 13), ('protesters', 46), ('clash', 9), ('march', 79), ('alton', 9), ('sterling', 14), ('profit', 26), ('jail', 36), ('pay', 161), ('traffic', 26), ('fin', 6), ('lawsuit', 38), ('poop', 3), ('antarctica', 4), ('penguin', 3), ('society', 29), ('blockbusters', 2), ('los', 17), ('angeles', 15), ('fame', 20), ('react', 15), ('vacation', 57), ('kathy', 3), ('griffin', 7), ('drop', 92), ('f', 27), ('apology', 21), ('strategist', 4), ('elect', 35), ('matter', 64), ('beside', 3), ('quill', 1), ('ink', 3), ('comic', 18), ('liz', 2), ('miele', 1), ('animate', 5), ('damage', 30), ('entire', 123), ('treasury', 11), ('compete', 13), ('goldman', 10), ('sachs', 9), ('penny', 4), ('lucky', 20), ('torture', 30), ('lincoln', 12), ('trap', 37), ('inside', 91), ('bible', 19), ('become', 150), ('tennessee', 9), ('substitute', 4), ('asshole', 29), ('pull', 95), ('bob', 37), ('costas', 1), ('famous', 26), ('dems', 11), ('nominate', 18), ('banjo', 2), ('player', 42), ('ring', 46), ('least', 59), ('diamond', 7), ('miners', 5), ('humans', 46), ('capacity', 3), ('compassion', 4), ('confuse', 25), ('budget', 42), ('allocate', 7), ('laser', 11), ('throat', 11), ('clearer', 2), ('bumgarner', 1), ('giants', 8), ('francis', 75), ('jerusalem', 12), ('western', 12), ('vice', 27), ('hit', 140), ('punch', 20), ('bag', 51), ('front', 63), ('wendy', 11), ('homestyle', 1), ('chicken', 45), ('strip', 33), ('salad', 13), ('shamelessly', 3), ('tout', 18), ('modest', 2), ('promotion', 10), ('drone', 31), ('outfit', 16), ('kick', 48), ('gym', 27), ('ethics', 17), ('chief', 76), ('gush', 4), ('responses', 6), ('neighbor', 42), ('wi', 4), ('fi', 12), ('must', 115), ('caution', 4), ('car', 114), ('value', 39), ('soon', 43), ('drive', 122), ('cliff', 6), ('singers', 2), ('k', 65), ('ci', 1), ('jojo', 3), ('enjoy', 63), ('nuclear', 69), ('doug', 7), ('jones', 44), ('victory', 26), ('goldfish', 6), ('teeter', 5), ('edge', 23), ('sanity', 2), ('sarah', 34), ('negotiator', 1), ('flood', 35), ('backyard', 14), ('burgers', 7), ('gross', 20), ('bacteria', 11), ('whale', 23), ('expert', 15), ('measure', 20), ('everything', 91), ('elephants', 5), ('rachel', 20), ('roy', 33), ('beauty', 47), ('secrets', 27), ('gloss', 4), ('femicide', 1), ('buenos', 1), ('pundit', 3), ('bizarre', 25), ('offensive', 5), ('robin', 13), ('williams', 45), ('therapy', 20), ('recount', 11), ('quick', 29), ('musicians', 7), ('scout', 26), ('proud', 45), ('prepare', 56), ('cool', 51), ('national', 139), ('slash', 4), ('fund', 87), ('hypochondriac', 2), ('maple', 3), ('always', 90), ('convince', 26), ('asian', 31), ('longhorn', 1), ('beetle', 1), ('dangerous', 36), ('middle', 113), ('east', 40), ('arm', 52), ('welder', 2), ('suffer', 30), ('block', 52), ('acorns', 1), ('float', 16), ('never', 198), ('invade', 11), ('storage', 7), ('facility', 6), ('massage', 8), ('airports', 4), ('apparently', 45), ('part', 136), ('certain', 8), ('rival', 9), ('dojo', 2), ('regionals', 1), ('postal', 6), ('cocksuckers', 1), ('wednesdays', 1), ('survive', 35), ('thrive', 7), ('adversity', 3), ('transgender', 49), ('bathroom', 48), ('suppose', 13), ('believe', 105), ('summon', 6), ('serious', 30), ('crime', 48), ('host', 83), ('showtime', 2), ('apollo', 2), ('worry', 93), ('type', 35), ('makeup', 20), ('insane', 16), ('useful', 4), ('elephant', 7), ('gift', 96), ('hipsters', 1), ('angrily', 3), ('hipster', 5), ('warpaint', 1), ('theresa', 9), ('wayman', 1), ('vivid', 2), ('inevitably', 1), ('gleeful', 1), ('kate', 27), ('mckinnon', 4), ('inner', 19), ('snl', 41), ('forgive', 15), ('debt', 30), ('college', 159), ('graduate', 35), ('dream', 127), ('shatter', 7), ('recognize', 21), ('actress', 19), ('eyelash', 1), ('aol', 8), ('prize', 31), ('better', 139), ('toy', 33), ('r', 35), ('trigger', 9), ('pavlovian', 1), ('shriek', 5), ('response', 62), ('academy', 17), ('december', 17), ('grammy', 14), ('tributes', 1), ('savion', 1), ('glover', 4), ('japan', 17), ('involve', 31), ('mp', 3), ('taro', 1), ('kono', 1), ('impression', 22), ('discreet', 2), ('stray', 8), ('bra', 6), ('syria', 58), ('weapons', 31), ('napoleon', 1), ('dynamite', 4), ('piece', 52), ('quote', 23), ('occupant', 1), ('longingly', 4), ('grill', 25), ('industry', 56), ('boom', 9), ('incarceration', 6), ('weed', 20), ('pit', 13), ('bull', 19), ('consumer', 15), ('confidence', 19), ('verge', 8), ('cockiness', 1), ('french', 31), ('friar', 1), ('st', 61), ('century', 28), ('trade', 51), ('fallon', 18), ('six', 38), ('tantalize', 3), ('months', 70), ('disappear', 16), ('forever', 32), ('drag', 44), ('superstars', 1), ('supermonster', 1), ('sunday', 28), ('roundup', 32), ('financial', 38), ('dick', 32), ('suck', 20), ('huffpollster', 24), ('base', 49), ('affair', 17), ('ally', 31), ('mcbeal', 3), ('violently', 5), ('fifth', 34), ('barely', 19), ('shower', 26), ('helm', 4), ('overreach', 2), ('loyalty', 9), ('brand', 35), ('quiet', 23), ('convenience', 4), ('store', 78), ('lunch', 36), ('archaeologists', 14), ('pyramid', 8), ('hocus', 1), ('pocus', 1), ('russia', 89), ('defense', 48), ('lawyer', 33), ('fat', 31), ('combine', 5), ('waffle', 8), ('cream', 28), ('friendly', 20), ('clear', 45), ('eisenhower', 1), ('reagan', 13), ('aim', 30), ('streets', 19), ('additional', 8), ('trey', 3), ('gowdy', 3), ('embarrass', 40), ('dianne', 5), ('feinstein', 7), ('eviscerate', 4), ('jeff', 42), ('sessions', 26), ('savage', 8), ('gunmen', 2), ('australian', 16), ('firm', 13), ('nigeria', 3), ('nra', 42), ('rush', 37), ('follow', 97), ('smartwatch', 1), ('hotels', 10), ('clay', 2), ('aiken', 1), ('gain', 29), ('bojangles', 1), ('straight', 68), ('evangelicals', 3), ('branch', 6), ('molestist', 1), ('sub', 7), ('denomination', 1), ('fundraise', 14), ('gear', 22), ('midterms', 11), ('insect', 2), ('limitless', 2), ('fly', 56), ('rocket', 12), ('pupil', 1), ('hour', 73), ('charter', 9), ('commitment', 4), ('problem', 66), ('article', 31), ('louis', 36), ('sales', 40), ('spike', 8), ('kellyanne', 11), ('conway', 10), ('orwellian', 1), ('ninja', 5), ('demonstrate', 10), ('escape', 39), ('loyal', 9), ('dog', 204), ('patiently', 7), ('george', 82), ('chicago', 54), ('shedd', 1), ('aquarium', 7), ('admit', 123), ('panda', 11), ('exhibit', 18), ('ghastly', 3), ('justin', 33), ('timberlake', 13), ('strength', 17), ('producer', 10), ('ryan', 99), ('murphy', 10), ('deal', 144), ('manners', 2), ('lesson', 14), ('britney', 19), ('spear', 16), ('recover', 20), ('stroke', 7), ('dance', 83), ('toxic', 22), ('cook', 42), ('cuff', 5), ('simple', 42), ('sicilian', 1), ('swordfish', 2), ('light', 89), ('sauce', 13), ('equal', 20), ('partner', 31), ('oafs', 1), ('spawn', 4), ('dupe', 5), ('ammon', 1), ('bundy', 4), ('directions', 8), ('cinema', 2), ('warrantless', 1), ('protect', 69), ('dozens', 41), ('future', 105), ('whistleblowers', 1), ('unclear', 11), ('whether', 55), ('opposition', 12), ('sector', 5), ('healthcare', 27), ('read', 119), ('citizens', 33), ('observe', 6), ('moment', 62), ('silence', 36), ('tiananmen', 1), ('square', 14), ('massacre', 14), ('bausch', 1), ('lomb', 1), ('aviator', 2), ('contact', 21), ('cameron', 10), ('diaz', 4), ('generally', 2), ('sorry', 26), ('comeback', 7), ('unlikely', 7), ('cannot', 15), ('alone', 34), ('syndrome', 7), ('grid', 4), ('ai', 7), ('webdesign', 1), ('average', 38), ('consume', 18), ('ounces', 3), ('offer', 132), ('pot', 21), ('blood', 55), ('sookie', 1), ('fault', 9), ('eager', 2), ('understudy', 2), ('lithgow', 1), ('impervious', 2), ('disease', 27), ('hairstylist', 3), ('girls', 89), ('beautiful', 67), ('shkreli', 5), ('rough', 15), ('inmates', 22), ('theft', 3), ('lowest', 4), ('caste', 3), ('toll', 17), ('enormous', 5), ('lindsey', 13), ('graham', 22), ('leak', 31), ('voicemails', 1), ('sell', 67), ('chamber', 13), ('mister', 2), ('rove', 5), ('master', 20), ('smear', 6), ('caterpillar', 1), ('pupal', 1), ('piss', 27), ('moth', 1), ('discover', 115), ('cave', 15), ('ancient', 19), ('pretend', 20), ('art', 87), ('feed', 27), ('mean', 105), ('trash', 30), ('widen', 3), ('puncture', 2), ('wildly', 11), ('aggressive', 7), ('assault', 85), ('sir', 5), ('winners', 18), ('illinois', 22), ('vicious', 5), ('carnivores', 2), ('decline', 19), ('arctic', 14), ('wildebeest', 1), ('awful', 15), ('stampede', 8), ('thousands', 82), ('peacefully', 4), ('baltimore', 15), ('lend', 3), ('louvre', 2), ('garden', 18), ('teem', 1), ('senatorial', 1), ('challenge', 51), ('opponent', 10), ('expectant', 3), ('minute', 65), ('skin', 42), ('care', 162), ('jessica', 18), ('milly', 1), ('connection', 15), ('obviously', 13), ('cheney', 24), ('food', 133), ('network', 38), ('production', 18), ('assistants', 3), ('prep', 11), ('fieri', 3), ('dry', 14), ('rub', 9), ('masturbate', 23), ('flay', 1), ('southwestern', 1), ('egg', 30), ('demo', 3), ('buffer', 2), ('weigh', 27), ('bigger', 14), ('yemen', 15), ('bruno', 4), ('mar', 40), ('covet', 5), ('artist', 51), ('inconsolable', 1), ('palin', 16), ('sacha', 2), ('cohen', 26), ('betrayal', 6), ('whoopi', 3), ('goldberg', 4), ('newlyweds', 4), ('medicinal', 2), ('bile', 6), ('lasik', 2), ('surgeries', 3), ('incinerate', 2), ('brain', 33), ('skull', 9), ('pitbull', 8), ('tremble', 3), ('scottish', 7), ('independence', 15), ('proudly', 9), ('holiday', 93), ('tyson', 7), ('beckford', 1), ('craziness', 2), ('villain', 7), ('shrine', 3), ('rent', 21), ('julianne', 3), ('moore', 44), ('custom', 2), ('chanel', 2), ('nissin', 1), ('extra', 37), ('drum', 9), ('noodles', 1), ('ganymede', 2), ('total', 27), ('moon', 31), ('pileup', 4), ('act', 86), ('yellow', 8), ('devil', 8), ('advocate', 21), ('shock', 54), ('transformations', 1), ('favorite', 63), ('country', 112), ('toomey', 2), ('swindle', 1), ('towns', 5), ('vincent', 4), ('direct', 27), ('adaptation', 4), ('dorian', 1), ('female', 92), ('faith', 27), ('reach', 58), ('digital', 24), ('subscribers', 5), ('starbucks', 18), ('lukewarm', 2), ('ease', 11), ('customers', 39), ('cactus', 2), ('cup', 45), ('per', 30), ('bless', 8), ('uno', 1), ('harrison', 5), ('agents', 17), ('annotations', 1), ('bombers', 2), ('spring', 45), ('tip', 95), ('jane', 10), ('fonda', 3), ('megyn', 8), ('plastic', 23), ('surgery', 18), ('nothing', 75), ('wrong', 84), ('lena', 19), ('dunham', 17), ('heal', 18), ('poignant', 6), ('reportedly', 48), ('germans', 3), ('german', 18), ('insects', 4), ('skitter', 1), ('motherhood', 8), ('extreme', 11), ('martyr', 4), ('oscar', 51), ('romero', 2), ('funeral', 27), ('attendees', 12), ('misty', 3), ('corpse', 10), ('spectacularly', 2), ('unpopular', 9), ('rolos', 2), ('cryptocurrency', 2), ('exclusively', 4), ('hospice', 2), ('nurse', 40), ('wither', 2), ('agony', 2), ('untested', 2), ('rape', 40), ('kit', 16), ('pfizer', 9), ('lawyers', 24), ('blender', 3), ('lynn', 3), ('walker', 19), ('huntley', 1), ('blister', 4), ('shift', 31), ('ize', 1), ('industries', 1), ('spy', 22), ('failure', 31), ('market', 81), ('coworker', 55), ('anyone', 52), ('interest', 60), ('lay', 50), ('bare', 10), ('physical', 12), ('shortcomings', 2), ('league', 18), ('lobby', 32), ('vasectomies', 1), ('viagra', 3), ('romans', 1), ('nuke', 11), ('alex', 17), ('trebek', 3), ('jeopardy', 9), ('category', 6), ('squirrel', 6), ('drama', 18), ('escalate', 10), ('hurry', 8), ('sudden', 12), ('cardiac', 3), ('likely', 42), ('african', 28), ('unapproved', 2), ('genetic', 10), ('instant', 8), ('lottery', 15), ('feature', 63), ('rampant', 3), ('misconduct', 26), ('architects', 1), ('crash', 77), ('finish', 44), ('impress', 21), ('ability', 16), ('finance', 15), ('efficiently', 1), ('amazon', 59), ('meal', 31), ('california', 93), ('answer', 46), ('overcrowd', 6), ('timmy', 2), ('blanchard', 1), ('incredible', 36), ('rescue', 47), ('dangle', 6), ('ski', 8), ('lift', 29), ('dramatic', 7), ('gather', 28), ('louisville', 2), ('final', 53), ('replace', 45), ('impeach', 6), ('geun', 1), ('hye', 1), ('soap', 11), ('settle', 15), ('goal', 13), ('hickenlooper', 3), ('solutions', 9), ('influence', 27), ('heed', 4), ('handcuff', 5), ('christmas', 104), ('staff', 47), ('poverty', 19), ('pallbearers', 1), ('carry', 42), ('leslie', 10), ('nielsen', 4), ('coffin', 6), ('incident', 20), ('origin', 7), ('comics', 10), ('abc', 14), ('education', 74), ('corden', 24), ('feud', 15), ('usain', 3), ('bolt', 8), ('hilarious', 42), ('heights', 4), ('lumberjack', 1), ('hearty', 2), ('breakfast', 32), ('kris', 10), ('jenner', 50), ('drunken', 8), ('valentine', 36), ('karaoke', 9), ('nude', 27), ('porky', 1), ('argue', 20), ('migrants', 18), ('alaska', 11), ('patrol', 10), ('hubby', 1), ('recap', 12), ('advantage', 8), ('anna', 6), ('kendrick', 13), ('safety', 29), ('net', 21), ('brace', 17), ('impact', 21), ('greg', 4), ('hardy', 3), ('unapologetically', 3), ('domestic', 30), ('abuse', 78), ('jury', 25), ('guilty', 34), ('mourn', 23), ('easter', 24), ('paper', 43), ('towel', 11), ('hole', 23), ('monster', 18), ('energy', 45), ('defibrillator', 3), ('volts', 2), ('refugee', 39), ('abolish', 2), ('genital', 5), ('mutilation', 3), ('somalia', 5), ('adults', 9), ('vaccinate', 3), ('measles', 9), ('genetics', 1), ('emphatically', 1), ('body', 144), ('confirmation', 11), ('lynch', 11), ('anything', 63), ('addiction', 20), ('medusa', 1), ('nebula', 1), ('prettier', 1), ('namesake', 1), ('seat', 43), ('creationist', 2), ('stance', 17), ('underway', 3), ('browser', 5), ('tabs', 4), ('present', 31), ('rare', 33), ('failures', 5), ('relive', 3), ('level', 50), ('field', 25), ('athletes', 10), ('science', 41), ('destiny', 5), ('newly', 23), ('tenure', 5), ('professor', 19), ('harder', 20), ('vin', 7), ('diesel', 8), ('bone', 17), ('castle', 13), ('sexism', 12), ('devalue', 1), ('publicist', 10), ('schmooze', 1), ('gorsuch', 17), ('thomas', 20), ('payback', 2), ('blackberry', 2), ('jacquie', 1), ('mcnish', 1), ('silcoff', 1), ('wilmer', 3), ('flores', 1), ('clergy', 4), ('tiny', 28), ('dancers', 6), ('churchgoing', 1), ('widow', 13), ('kam', 1), ('skywriter', 2), ('note', 40), ('baseball', 27), ('sillier', 1), ('filth', 1), ('q', 20), ('resident', 11), ('opinion', 24), ('anonymous', 15), ('cowardly', 4), ('snitch', 2), ('health', 216), ('rest', 50), ('agenda', 14), ('either', 23), ('ground', 9), ('gorgeous', 17), ('merely', 3), ('resistance', 16), ('seek', 54), ('normalize', 1), ('optimistic', 5), ('song', 55), ('jenna', 7), ('fischer', 1), ('pam', 1), ('michael', 96), ('office', 161), ('goodbye', 16), ('episode', 43), ('billion', 60), ('gimme', 1), ('suitors', 3), ('healthy', 45), ('web', 20), ('design', 38), ('condemn', 33), ('ukrainian', 5), ('unprovoked', 3), ('occupation', 3), ('welcome', 42), ('kotter', 3), ('spec', 1), ('script', 12), ('attic', 3), ('mtv', 9), ('promote', 26), ('responders', 4), ('bike', 17), ('tyler', 7), ('leg', 12), ('laptop', 13), ('usb', 1), ('port', 3), ('twitter', 90), ('comfortable', 17), ('perpetrators', 1), ('separate', 19), ('mental', 51), ('awareness', 18), ('aid', 68), ('valley', 19), ('ranch', 3), ('balsamic', 1), ('extremists', 8), ('smoke', 26), ('engulf', 7), ('ankara', 1), ('deadly', 41), ('substance', 2), ('journey', 26), ('chuck', 36), ('grassley', 7), ('scratch', 10), ('christine', 8), ('blasey', 7), ('slut', 2), ('stall', 12), ('raid', 25), ('nacho', 5), ('supremacist', 9), ('compound', 3), ('guacamole', 4), ('materials', 2), ('sniper', 16), ('screenwriter', 5), ('jason', 17), ('otherwise', 9), ('savvy', 4), ('mascara', 1), ('makers', 3), ('resolution', 13), ('colleges', 16), ('normal', 24), ('cuba', 26), ('suspect', 80), ('completely', 59), ('torpedo', 1), ('arguments', 7), ('pro', 46), ('mythbusters', 1), ('zeus', 2), ('percent', 69), ('cole', 7), ('slaw', 1), ('remain', 60), ('uneaten', 1), ('vulnerable', 11), ('trans', 51), ('winner', 20), ('grocery', 12), ('freezer', 6), ('description', 5), ('accident', 26), ('bullshit', 7), ('form', 48), ('rejoin', 2), ('lil', 4), ('jon', 24), ('uncle', 14), ('ok', 14), ('pike', 3), ('conceive', 3), ('saw', 21), ('bigfoot', 2), ('relate', 27), ('closest', 8), ('term', 38), ('publicists', 2), ('injure', 36), ('transform', 26), ('dwayne', 5), ('johnson', 32), ('taraji', 6), ('p', 27), ('henson', 6), ('thoughts', 18), ('empire', 12), ('grateful', 16), ('citizenship', 10), ('tanzania', 2), ('employers', 7), ('within', 31), ('applicant', 6), ('michigan', 22), ('residents', 41), ('unhappy', 4), ('snyder', 5), ('slump', 4), ('downton', 4), ('abbey', 4), ('count', 22), ('confederate', 18), ('monuments', 2), ('jennifer', 35), ('garner', 13), ('appearance', 28), ('since', 66), ('split', 27), ('isil', 2), ('excite', 82), ('beach', 37), ('sweater', 9), ('mizzou', 5), ('players', 26), ('resignation', 10), ('reference', 13), ('actors', 17), ('terribly', 4), ('bright', 10), ('killer', 38), ('euphemize', 2), ('icy', 6), ('caroline', 5), ('kennedy', 15), ('invoke', 4), ('grasp', 5), ('liberal', 13), ('burger', 28), ('hellish', 2), ('investigate', 28), ('insurance', 33), ('bombshell', 3), ('taliban', 16), ('unity', 8), ('kind', 73), ('sandy', 9), ('emotional', 44), ('sacrifice', 11), ('bruce', 18), ('okay', 24), ('across', 54), ('trance', 1), ('unreal', 4), ('glimpse', 17), ('atonal', 2), ('composers', 1), ('atony', 1), ('wayne', 8), ('lapierre', 4), ('harpoon', 4), ('spree', 4), ('sort', 30), ('lonely', 11), ('basil', 1), ('plant', 38), ('pasta', 4), ('olive', 5), ('beyond', 24), ('cynthia', 6), ('nixon', 8), ('funny', 23), ('avery', 3), ('doubt', 15), ('nephew', 8), ('conviction', 7), ('overturn', 11), ('goals', 14), ('landmarks', 6), ('memorial', 28), ('cache', 2), ('fossils', 2), ('natural', 20), ('museum', 40), ('capture', 38), ('ambush', 3), ('officer', 69), ('fastest', 8), ('chess', 7), ('match', 33), ('grim', 4), ('reaper', 2), ('mountain', 13), ('lion', 13), ('near', 53), ('malibu', 2), ('group', 128), ('rwanda', 1), ('magnet', 3), ('audience', 50), ('amy', 23), ('klobuchar', 3), ('ovation', 5), ('moms', 48), ('munich', 1), ('authorities', 31), ('michelle', 49), ('cruiser', 1), ('ditch', 24), ('owl', 5), ('holy', 15), ('ritual', 9), ('orthodox', 2), ('mock', 30), ('facts', 22), ('documentaries', 6), ('outline', 7), ('legacies', 1), ('alfred', 3), ('hitchcock', 3), ('semiotics', 1), ('semiotism', 1), ('neighborhood', 35), ('identify', 15), ('difficult', 17), ('roommates', 9), ('bond', 26), ('tarsiers', 1), ('smallest', 3), ('primate', 1), ('animal', 24), ('looney', 5), ('glider', 1), ('gang', 14), ('terrorize', 7), ('glitter', 3), ('eyeliner', 3), ('fashion', 63), ('cdc', 11), ('crossfit', 2), ('mama', 9), ('brett', 10), ('cruel', 10), ('unusual', 7), ('punishment', 10), ('kappa', 1), ('gynecologist', 2), ('historic', 28), ('join', 56), ('honor', 99), ('unlock', 5), ('deeper', 6), ('darker', 3), ('corner', 22), ('psyche', 3), ('homepage', 2), ('stir', 12), ('controversy', 24), ('guest', 40), ('liberals', 10), ('hover', 4), ('ren', 5), ('magritte', 2), ('estate', 18), ('graduations', 1), ('paint', 37), ('skills', 23), ('magical', 33), ('frantically', 20), ('frustrate', 33), ('unable', 37), ('friggin', 1), ('enrage', 7), ('stageplay', 1), ('unconvincingly', 1), ('restrain', 4), ('retire', 43), ('smart', 25), ('mostly', 14), ('olds', 10), ('jada', 3), ('pinkett', 3), ('smith', 29), ('gabrielle', 5), ('flub', 3), ('gaffe', 5), ('key', 69), ('voter', 48), ('chop', 8), ('wood', 5), ('flannel', 2), ('decision', 56), ('pogge', 1), ('do', 43), ('yale', 6), ('philosophy', 4), ('colleague', 5), ('diabetic', 3), ('gout', 1), ('jong', 30), ('un', 59), ('far', 57), ('healthiest', 6), ('legitimately', 3), ('bread', 11), ('tsoureki', 1), ('triumph', 3), ('engineer', 15), ('daughters', 18), ('spicer', 22), ('humiliations', 1), ('plane', 50), ('greet', 12), ('baggage', 2), ('swiftly', 1), ('washington', 76), ('dairy', 5), ('mutilate', 2), ('arrange', 3), ('pentagram', 1), ('blizzard', 5), ('opponents', 9), ('peace', 48), ('corporate', 26), ('puppy', 19), ('closer', 21), ('gif', 6), ('humanity', 20), ('possibility', 7), ('powerball', 9), ('jackpot', 8), ('notorious', 2), ('cremation', 1), ('enthusiasm', 3), ('unbearable', 2), ('pete', 13), ('buttigieg', 6), ('orlando', 22), ('locals', 4), ('overrun', 2), ('tourists', 12), ('homoji', 1), ('keyboard', 6), ('queer', 56), ('shorthand', 1), ('psilocybin', 1), ('reduce', 30), ('mindlessly', 1), ('lemming', 1), ('hurricanes', 6), ('turnout', 11), ('picture', 65), ('gilmore', 15), ('revival', 11), ('tornadoes', 3), ('rip', 42), ('midwest', 2), ('unemployed', 15), ('meghan', 18), ('markle', 15), ('adoption', 4), ('horrible', 23), ('aspect', 1), ('everyday', 10), ('twas', 2), ('contest', 17), ('fucker', 5), ('squirm', 2), ('legend', 24), ('earnest', 3), ('khloe', 12), ('braless', 1), ('leaders', 64), ('everyone', 141), ('miserable', 7), ('melania', 27), ('mermaid', 1), ('spoof', 23), ('establishment', 9), ('moderate', 7), ('heat', 22), ('dysmorphia', 2), ('sufferers', 2), ('skew', 4), ('perception', 2), ('shape', 41), ('indefensible', 2), ('oregon', 17), ('motivational', 5), ('tape', 22), ('actor', 42), ('tony', 23), ('hale', 3), ('dish', 23), ('veep', 3), ('wise', 10), ('oracle', 1), ('proclaim', 8), ('barbecue', 8), ('felt', 14), ('raindrop', 1), ('chipotle', 10), ('mayo', 7), ('heavy', 11), ('nobel', 17), ('chemistry', 5), ('taft', 1), ('mr', 25), ('ambler', 1), ('backup', 7), ('spatula', 1), ('unthinkable', 4), ('rand', 16), ('menace', 3), ('bolton', 16), ('guests', 31), ('escort', 7), ('vip', 4), ('performers', 4), ('intel', 6), ('oversized', 3), ('novelty', 6), ('processor', 1), ('nfl', 50), ('superfan', 1), ('shortcuts', 2), ('appear', 38), ('cindy', 6), ('gallop', 1), ('redefine', 9), ('original', 20), ('remington', 1), ('barrel', 10), ('shotgun', 3), ('deeply', 16), ('singapore', 7), ('interreligious', 1), ('sant', 2), ('egidio', 1), ('music', 87), ('newsroom', 5), ('writers', 13), ('idea', 86), ('aaron', 9), ('sorkin', 1), ('styrofoam', 7), ('omaha', 1), ('pacific', 12), ('ocean', 23), ('currently', 29), ('previously', 22), ('undiscovered', 2), ('mosquito', 4), ('illness', 14), ('cable', 12), ('tank', 27), ('roll', 69), ('horror', 22), ('add', 99), ('constitution', 19), ('minor', 13), ('major', 47), ('l', 27), ('settlement', 13), ('campuses', 3), ('except', 14), ('tariff', 6), ('retribution', 1), ('bon', 4), ('tit', 1), ('responsible', 19), ('quiche', 1), ('bots', 4), ('pediatricians', 2), ('upset', 20), ('rescind', 7), ('nighttime', 2), ('healthier', 7), ('turkey', 40), ('grind', 37), ('nicaraguan', 2), ('vilanch', 1), ('sodomize', 1), ('utah', 8), ('cancel', 42), ('balance', 16), ('astronomers', 14), ('nitrogen', 1), ('spook', 4), ('knock', 27), ('lantern', 3), ('infrequently', 1), ('dental', 8), ('pistorius', 8), ('sentence', 55), ('pufferfish', 1), ('bitter', 7), ('friendless', 1), ('alien', 22), ('alpha', 5), ('centauri', 2), ('brothers', 23), ('bitch', 12), ('progressive', 21), ('earn', 23), ('vogue', 6), ('iran', 85), ('nancy', 15), ('kerrigan', 1), ('sure', 94), ('arboretum', 2), ('toward', 42), ('jamie', 4), ('fetus', 8), ('maytag', 1), ('due', 19), ('listeria', 2), ('journal', 14), ('balk', 1), ('limit', 34), ('authoritarian', 3), ('transportation', 18), ('declare', 41), ('gonna', 7), ('explode', 12), ('quickly', 23), ('hertz', 1), ('rental', 4), ('heartwarming', 9), ('grandson', 14), ('grandparents', 13), ('kerry', 47), ('frustration', 4), ('consultant', 5), ('plead', 20), ('coordination', 2), ('carolina', 47), ('church', 55), ('rampage', 4), ('represent', 12), ('terrorist', 17), ('threat', 39), ('worse', 41), ('ail', 13), ('homicides', 1), ('schwartz', 1), ('hunchback', 3), ('threats', 27), ('clinch', 5), ('slumber', 4), ('z', 21), ('hasbro', 3), ('concede', 7), ('rubik', 1), ('coroner', 6), ('conclude', 12), ('institutionalize', 3), ('activists', 38), ('organize', 16), ('evidence', 50), ('extremely', 16), ('chilly', 3), ('meditate', 3), ('relief', 19), ('dust', 7), ('insult', 13), ('awkwardly', 11), ('clarify', 16), ('usher', 12), ('ultra', 11), ('subculture', 5), ('kite', 2), ('flyer', 3), ('preschooler', 1), ('borrow', 8), ('classmate', 12), ('patient', 26), ('suppository', 1), ('hart', 7), ('awkward', 25), ('sun', 24), ('slovenian', 2), ('graders', 8), ('outperform', 2), ('prosthetic', 5), ('vend', 5), ('prayers', 17), ('heidi', 3), ('nastiness', 1), ('backlash', 14), ('superstores', 1), ('megamalls', 1), ('lieberman', 1), ('overlords', 1), ('displease', 2), ('messy', 4), ('imperfect', 3), ('finale', 16), ('jesus', 42), ('molest', 13), ('nuns', 4), ('shelve', 10), ('grimly', 1), ('aware', 7), ('chaos', 13), ('disappoint', 42), ('waitlist', 1), ('pentagon', 19), ('lanes', 1), ('cyclists', 1), ('cars', 32), ('swim', 15), ('macarthur', 3), ('norfolk', 1), ('virginia', 34), ('mugabe', 1), ('deputy', 14), ('swear', 26), ('date', 129), ('plus', 17), ('size', 36), ('jewish', 21), ('goods', 7), ('native', 12), ('inversions', 1), ('drugmakers', 1), ('cackle', 7), ('buffett', 7), ('fortune', 10), ('indonesia', 3), ('gamers', 3), ('rejoice', 3), ('potion', 1), ('restore', 19), ('hp', 1), ('vision', 25), ('cross', 44), ('exhibitionist', 1), ('screw', 14), ('shutdowns', 1), ('unite', 74), ('nations', 11), ('invite', 23), ('lg', 1), ('forum', 4), ('h', 22), ('green', 46), ('espero', 1), ('homelessness', 6), ('moments', 20), ('wimbledon', 2), ('battle', 55), ('wits', 3), ('unwieldy', 1), ('burrito', 6), ('thrill', 21), ('endgame', 2), ('thor', 3), ('helmet', 7), ('glow', 15), ('neon', 3), ('hue', 1), ('emp', 1), ('disable', 17), ('electronic', 4), ('devices', 3), ('brutal', 13), ('slay', 26), ('puzzle', 9), ('ferguson', 48), ('hospital', 42), ('shitty', 17), ('decrease', 10), ('daylight', 4), ('policies', 19), ('dysfunctional', 4), ('manager', 41), ('podium', 9), ('carly', 13), ('fiorina', 12), ('cleave', 1), ('palate', 1), ('doctor', 90), ('pills', 12), ('gore', 17), ('maul', 6), ('aquatic', 1), ('mammal', 2), ('koch', 13), ('increasingly', 24), ('influential', 5), ('trillionaire', 1), ('bust', 19), ('driveway', 5), ('feds', 10), ('anaconda', 1), ('yes', 36), ('atheist', 5), ('sway', 5), ('claymation', 1), ('christ', 24), ('bradley', 8), ('loud', 22), ('particular', 4), ('invent', 13), ('spouse', 11), ('cancer', 81), ('wide', 14), ('spread', 24), ('powder', 2), ('shortage', 7), ('bewigged', 1), ('dinner', 53), ('crazy', 33), ('kebab', 2), ('buzz', 8), ('aldrin', 4), ('shoutout', 1), ('hook', 18), ('principal', 7), ('polish', 8), ('hallmark', 3), ('israeli', 28), ('palestinian', 26), ('conflict', 30), ('spanx', 2), ('conceal', 10), ('unwanted', 3), ('bump', 9), ('bulge', 2), ('blurb', 2), ('later', 24), ('stimpy', 1), ('creator', 25), ('sexually', 22), ('recently', 14), ('divorce', 57), ('navigate', 7), ('sia', 1), ('title', 24), ('grammatical', 1), ('error', 7), ('antarctic', 2), ('observational', 2), ('streak', 8), ('vitale', 2), ('madness', 10), ('sorority', 5), ('stable', 4), ('horse', 44), ('wash', 24), ('accord', 38), ('pinterest', 5), ('dnc', 38), ('committee', 39), ('melt', 19), ('iceberg', 7), ('sea', 41), ('hunt', 23), ('saddest', 3), ('convention', 34), ('button', 16), ('collection', 18), ('pact', 5), ('nhl', 7), ('ozzie', 1), ('guillen', 1), ('kfc', 15), ('bird', 47), ('flu', 25), ('dip', 11), ('vaccine', 12), ('investigation', 66), ('fell', 9), ('nightstand', 1), ('morning', 103), ('misery', 6), ('gluten', 3), ('pancake', 4), ('mix', 36), ('sand', 7), ('paula', 8), ('abdul', 6), ('gps', 22), ('ugandan', 2), ('museveni', 1), ('roadside', 3), ('avenatti', 1), ('document', 26), ('overprice', 2), ('whisker', 1), ('heavily', 7), ('starch', 2), ('larry', 19), ('upright', 3), ('clueless', 3), ('survey', 12), ('happiest', 8), ('ago', 41), ('fare', 3), ('zakaria', 1), ('anthony', 13), ('weiner', 4), ('mayor', 44), ('norway', 5), ('eliminate', 14), ('fm', 3), ('radio', 27), ('despite', 41), ('disapproval', 2), ('robbie', 3), ('knievel', 1), ('generation', 27), ('sheriff', 12), ('deputies', 6), ('discipline', 6), ('creepy', 25), ('weirdo', 6), ('stalk', 5), ('facial', 6), ('expressions', 2), ('waitress', 17), ('specials', 4), ('macklemore', 3), ('tvs', 2), ('sear', 13), ('dangerously', 7), ('underpetted', 1), ('versus', 7), ('nervously', 13), ('girlfriend', 83), ('doggy', 4), ('breathe', 22), ('device', 10), ('shop', 73), ('trainee', 4), ('goner', 1), ('craft', 13), ('deepest', 2), ('hell', 47), ('vertical', 1), ('mary', 14), ('meeker', 1), ('bergdahl', 5), ('martial', 9), ('desertion', 1), ('tormund', 2), ('hound', 4), ('afeni', 1), ('shakur', 1), ('omarosa', 4), ('else', 40), ('n', 51), ('immune', 3), ('deficient', 1), ('realtor', 4), ('bubble', 12), ('charles', 17), ('krauthammer', 1), ('prosperous', 1), ('liberate', 3), ('presentation', 9), ('mark', 90), ('lightweight', 2), ('boofing', 1), ('triangle', 2), ('seychelles', 2), ('nordstrom', 6), ('low', 57), ('sale', 27), ('animals', 35), ('businesses', 21), ('racially', 2), ('november', 14), ('spirit', 27), ('nasa', 41), ('curiosity', 8), ('rover', 11), ('insight', 5), ('communications', 7), ('accidental', 4), ('gunfire', 3), ('waldorf', 1), ('astoria', 2), ('upstanding', 2), ('member', 32), ('robots', 7), ('waste', 52), ('adderall', 3), ('prescription', 17), ('also', 40), ('dessert', 6), ('others', 31), ('con', 19), ('nonetheless', 2), ('rid', 31), ('van', 21), ('zandt', 1), ('ass', 36), ('stunt', 12), ('biker', 3), ('danny', 10), ('macaskill', 1), ('scotland', 8), ('obstacle', 3), ('course', 38), ('survivor', 17), ('abduction', 2), ('lego', 2), ('backpacker', 2), ('instagrams', 2), ('deserve', 37), ('stormi', 1), ('lick', 7), ('floor', 36), ('pepperoni', 2), ('dole', 10), ('advisor', 5), ('carter', 19), ('dumb', 17), ('concession', 5), ('mcadams', 3), ('blake', 12), ('monument', 11), ('designer', 21), ('reject', 33), ('affluenza', 1), ('tonya', 1), ('curfew', 2), ('publicly', 6), ('humiliate', 19), ('telekinetic', 1), ('gasp', 3), ('counsel', 8), ('gestation', 1), ('ingenious', 1), ('analyst', 8), ('irony', 3), ('cyber', 16), ('trevor', 30), ('noah', 30), ('explain', 95), ('strongest', 7), ('briefcase', 4), ('employees', 61), ('desk', 34), ('prime', 24), ('minister', 25), ('patrick', 17), ('praise', 36), ('arkansas', 9), ('certificate', 11), ('english', 21), ('pre', 30), ('jerry', 19), ('brown', 41), ('preps', 2), ('celebrities', 25), ('decimate', 5), ('biscuit', 2), ('populations', 1), ('cheddar', 3), ('bay', 8), ('parenthood', 29), ('tooba', 1), ('marwat', 1), ('signarama', 1), ('savor', 4), ('glorious', 8), ('surround', 16), ('knife', 18), ('wield', 10), ('ones', 22), ('sportswear', 1), ('sustainability', 3), ('funniest', 28), ('delete', 16), ('broad', 6), ('rowland', 2), ('saudi', 44), ('operative', 3), ('mortify', 4), ('footage', 26), ('khashoggi', 7), ('bleary', 3), ('cosmopolitan', 6), ('staffer', 11), ('crank', 4), ('billionth', 4), ('decency', 1), ('destructive', 3), ('cybersecurity', 3), ('package', 17), ('gold', 38), ('medal', 6), ('recipient', 3), ('raoul', 1), ('wallenberg', 1), ('difference', 16), ('quadruplets', 1), ('harvard', 6), ('shanghai', 1), ('bottom', 20), ('windows', 12), ('benghazi', 10), ('tattoo', 20), ('joke', 50), ('dear', 32), ('scholar', 1), ('agree', 50), ('stone', 34), ('lewis', 9), ('legitimate', 5), ('spokesmodels', 1), ('copy', 18), ('philadelphia', 16), ('medical', 38), ('examiner', 1), ('amonderez', 1), ('autopsy', 6), ('jedi', 10), ('chauvinist', 1), ('decompression', 1), ('sickness', 3), ('matt', 29), ('lauer', 8), ('suspension', 7), ('qualities', 2), ('slice', 8), ('railroad', 5), ('messiah', 2), ('zoroastrianism', 1), ('e', 53), ('mail', 24), ('delivery', 14), ('yank', 4), ('snatch', 3), ('axact', 1), ('scandal', 41), ('pakistan', 10), ('purge', 5), ('hopeful', 11), ('capitalize', 4), ('milestone', 5), ('twice', 13), ('elfman', 4), ('up', 12), ('down', 6), ('relationship', 63), ('burton', 5), ('silicon', 10), ('elusive', 5), ('tourist', 14), ('attraction', 10), ('uncertain', 5), ('fate', 14), ('brutality', 6), ('kenya', 9), ('cher', 4), ('encourage', 34), ('radical', 9), ('extremist', 5), ('safer', 8), ('halloween', 49), ('display', 25), ('horrors', 7), ('racism', 30), ('blowback', 2), ('workplace', 16), ('caesars', 2), ('marshmallows', 1), ('gravy', 2), ('pizza', 43), ('directly', 19), ('sweatshop', 4), ('worker', 43), ('condition', 31), ('fabric', 5), ('sister', 22), ('viral', 31), ('sidewalk', 9), ('alyssa', 2), ('edwards', 10), ('reflect', 18), ('rupaul', 11), ('autograph', 5), ('portrait', 20), ('reedus', 2), ('tease', 10), ('critics', 29), ('utmost', 1), ('stormy', 14), ('daniels', 19), ('disclosures', 1), ('steamy', 4), ('distraction', 4), ('knowledge', 17), ('cure', 15), ('growth', 14), ('rebound', 1), ('sharply', 6), ('unemployment', 5), ('rate', 29), ('landlord', 5), ('leaky', 1), ('exact', 12), ('universe', 30), ('gerber', 3), ('formula', 3), ('infant', 12), ('cyclist', 6), ('sheer', 8), ('relationships', 16), ('belgrade', 2), ('violent', 28), ('pride', 28), ('pics', 6), ('freedom', 33), ('serbia', 2), ('despondent', 5), ('bezos', 10), ('rfk', 2), ('potemkin', 1), ('villages', 1), ('reddit', 5), ('users', 54), ('kenny', 4), ('visual', 8), ('poet', 10), ('nightlife', 6), ('icon', 11), ('healer', 3), ('galen', 1), ('heroes', 15), ('cheap', 18), ('airfare', 2), ('sole', 13), ('nato', 16), ('alcohol', 12), ('theme', 43), ('absolutely', 29), ('sop', 1), ('wet', 14), ('inexperienced', 2), ('commission', 13), ('cite', 19), ('shameful', 2), ('renal', 1), ('fallible', 1), ('advertise', 11), ('mute', 4), ('resistant', 6), ('pork', 6), ('deficiency', 1), ('hammer', 20), ('induce', 6), ('injury', 13), ('almighty', 1), ('proof', 23), ('definitely', 13), ('pee', 9), ('tearful', 12), ('manufacturers', 5), ('safely', 9), ('sentimental', 1), ('founder', 22), ('rename', 11), ('unaware', 24), ('freshman', 16), ('keg', 5), ('secretly', 16), ('buckley', 1), ('broadway', 23), ('villagers', 2), ('squad', 14), ('overnight', 8), ('amendment', 19), ('infowars', 3), ('reasonable', 6), ('precedent', 3), ('stickers', 2), ('midterm', 7), ('disclose', 12), ('recipe', 8), ('sam', 15), ('dubose', 1), ('haircut', 8), ('progress', 16), ('berate', 4), ('liam', 2), ('smooch', 2), ('nye', 5), ('cookie', 10), ('separation', 4), ('magic', 24), ('tick', 8), ('happy', 69), ('burlesque', 2), ('cell', 22), ('pet', 42), ('critter', 1), ('affordability', 1), ('attainment', 1), ('success', 48), ('acceptance', 13), ('graduation', 12), ('babble', 1), ('grin', 3), ('mitch', 29), ('mcconnell', 32), ('emts', 1), ('load', 16), ('stretcher', 2), ('ghoulish', 2), ('recent', 24), ('celebrity', 36), ('delicate', 5), ('bony', 2), ('smile', 31), ('thinly', 2), ('convene', 2), ('capable', 19), ('religious', 44), ('bigotry', 3), ('scientist', 14), ('nag', 2), ('particle', 3), ('accelerator', 1), ('connect', 18), ('overstock', 1), ('decipher', 2), ('creatures', 3), ('ashore', 1), ('huffpost', 62), ('hill', 27), ('nostalgic', 14), ('v', 23), ('somehow', 37), ('refuse', 59), ('disaffect', 1), ('gravitate', 1), ('neo', 9), ('nazism', 1), ('xbox', 9), ('instead', 29), ('elon', 15), ('musk', 15), ('exist', 30), ('damon', 11), ('feet', 26), ('landfall', 1), ('roof', 14), ('dollars', 8), ('class', 91), ('mention', 29), ('giddy', 3), ('brief', 34), ('passage', 9), ('manhood', 4), ('undocumented', 12), ('selfie', 13), ('receipt', 4), ('conceptual', 1), ('genius', 18), ('egypt', 10), ('homosexuality', 9), ('fiction', 11), ('filmmakers', 3), ('canby', 1), ('overlong', 1), ('poorly', 6), ('paradise', 8), ('lawmaker', 16), ('throne', 43), ('piracy', 1), ('harper', 7), ('lee', 27), ('ensure', 10), ('novel', 20), ('relevant', 4), ('pipelines', 1), ('ballot', 18), ('rework', 1), ('candy', 18), ('amplify', 1), ('wiretapping', 4), ('gallery', 9), ('dull', 3), ('object', 23), ('jenny', 5), ('mccarthy', 7), ('lure', 7), ('schumer', 31), ('filibuster', 9), ('neil', 19), ('kinky', 5), ('recessive', 1), ('gene', 10), ('dominate', 16), ('peyton', 7), ('badly', 7), ('hbcu', 4), ('imply', 4), ('cooperate', 2), ('foundation', 22), ('preview', 10), ('interim', 2), ('pulse', 6), ('barriers', 4), ('able', 24), ('decent', 5), ('thirteenth', 1), ('undercover', 8), ('janitor', 7), ('island', 30), ('politician', 14), ('billy', 15), ('joel', 6), ('flash', 18), ('mob', 8), ('spell', 13), ('golf', 17), ('populace', 12), ('collective', 5), ('goodwill', 4), ('tragedies', 1), ('psychologist', 3), ('wake', 54), ('milla', 1), ('jovovich', 1), ('induct', 4), ('macron', 5), ('nyt', 6), ('column', 6), ('assert', 5), ('stink', 2), ('marlee', 1), ('matlin', 1), ('worthy', 8), ('latinos', 17), ('overwhelmingly', 4), ('dial', 5), ('honorary', 1), ('degrees', 8), ('commencement', 14), ('whitfield', 1), ('dependent', 4), ('resound', 1), ('lunar', 3), ('pole', 8), ('vaulter', 1), ('lung', 8), ('satisfy', 15), ('flavor', 20), ('cycle', 10), ('chronically', 1), ('wallpaper', 2), ('golden', 38), ('globes', 19), ('jesse', 5), ('humanitarian', 6), ('bet', 14), ('chili', 10), ('rib', 3), ('platter', 3), ('complimentary', 4), ('hose', 5), ('confront', 14), ('slide', 18), ('gummy', 2), ('xi', 4), ('jinping', 2), ('indefinitely', 6), ('giant', 39), ('bug', 9), ('dismiss', 7), ('pack', 44), ('feral', 1), ('kissinger', 2), ('instruct', 8), ('finer', 2), ('clandestine', 2), ('hawaii', 24), ('snow', 28), ('denver', 7), ('homemade', 5), ('cane', 3), ('fudge', 2), ('dislike', 2), ('awesome', 28), ('unknown', 10), ('sesame', 5), ('frontier', 3), ('sow', 3), ('elections', 20), ('literally', 21), ('simpler', 6), ('weekly', 11), ('ebay', 6), ('vintage', 5), ('printout', 1), ('stigmas', 1), ('custodian', 2), ('maintenance', 3), ('crew', 29), ('patch', 8), ('plotholes', 1), ('taylor', 61), ('swift', 50), ('wanna', 5), ('zayn', 4), ('wonk', 1), ('shtick', 1), ('zero', 21), ('patience', 4), ('co', 37), ('op', 11), ('airline', 14), ('cheaper', 10), ('efforts', 12), ('gut', 7), ('watchdog', 5), ('onslaught', 1), ('criticism', 21), ('passenger', 19), ('june', 11), ('rommel', 1), ('hummel', 1), ('hack', 30), ('draw', 53), ('eyebrows', 4), ('flabbergast', 1), ('touchscreen', 2), ('universally', 2), ('bum', 7), ('homecoming', 3), ('damn', 22), ('surface', 15), ('dentist', 2), ('toss', 18), ('paramount', 7), ('criminal', 24), ('irs', 7), ('refund', 6), ('stamp', 20), ('tear', 51), ('brian', 13), ('nightly', 5), ('muscular', 2), ('reconciliation', 6), ('uncommon', 1), ('infection', 4), ('complications', 2), ('victoria', 9), ('pageant', 5), ('sweatpants', 1), ('bun', 3), ('model', 45), ('mystery', 21), ('amount', 21), ('collect', 16), ('epic', 18), ('pool', 34), ('puke', 4), ('lanthanum', 1), ('periodic', 3), ('elements', 3), ('selfies', 4), ('pythons', 1), ('mount', 18), ('helens', 1), ('erupt', 16), ('transcript', 2), ('tabloid', 2), ('reporters', 14), ('dirt', 6), ('queen', 53), ('suspicious', 14), ('wikileaks', 6), ('trustworthy', 1), ('dedicate', 6), ('cakewalk', 2), ('defiantly', 1), ('scone', 1), ('naturally', 4), ('carpe', 1), ('diem', 1), ('japanese', 19), ('resign', 50), ('revenge', 11), ('czech', 4), ('clarinet', 2), ('factory', 21), ('flame', 18), ('intend', 21), ('apartment', 54), ('cough', 5), ('bittersweet', 3), ('truths', 7), ('perspective', 19), ('fusion', 3), ('summit', 20), ('aneurysms', 1), ('rupture', 7), ('reince', 8), ('priebus', 10), ('virtual', 7), ('reality', 55), ('cannes', 7), ('silver', 21), ('freestyle', 2), ('halfpipe', 1), ('biopic', 4), ('bohemian', 2), ('rhapsody', 2), ('pillsbury', 2), ('doughboy', 3), ('yell', 14), ('european', 12), ('micro', 1), ('attorneys', 2), ('severe', 7), ('repercussions', 2), ('gassy', 2), ('circa', 1), ('ghostbusters', 3), ('uniform', 11), ('tolerance', 3), ('afghanistan', 35), ('shrink', 10), ('pink', 10), ('advertisers', 6), ('flee', 14), ('surge', 22), ('gayby', 1), ('reunite', 26), ('bloody', 9), ('fun', 69), ('eight', 11), ('operator', 9), ('remote', 13), ('crate', 8), ('theodore', 1), ('roosevelt', 3), ('ominously', 6), ('twin', 20), ('tension', 9), ('keebler', 2), ('elves', 2), ('beloved', 17), ('scavenger', 1), ('twine', 3), ('verizon', 8), ('ny', 8), ('multiple', 12), ('deployment', 2), ('fios', 1), ('fttp', 1), ('broadband', 2), ('cronyist', 1), ('cartel', 2), ('salvador', 4), ('dali', 1), ('surreal', 2), ('trippy', 2), ('vr', 3), ('belafonte', 2), ('activism', 8), ('joint', 10), ('gobbler', 1), ('hunger', 19), ('gallup', 8), ('defend', 65), ('la', 19), ('cheetos', 3), ('convict', 10), ('vatican', 37), ('sons', 13), ('finger', 29), ('lady', 45), ('parentheses', 1), ('anyway', 19), ('farmer', 6), ('chase', 29), ('barn', 3), ('tyrannical', 3), ('yoke', 1), ('hannity', 14), ('tenant', 9), ('deep', 39), ('conspiracy', 21), ('triple', 14), ('prosecutor', 14), ('walter', 5), ('perceptions', 3), ('superpower', 2), ('steer', 5), ('wheel', 20), ('actualize', 2), ('valerie', 3), ('ramsey', 3), ('worlds', 2), ('franz', 1), ('ferdinand', 1), ('frontman', 4), ('gavrilo', 1), ('princip', 1), ('bassist', 2), ('third', 72), ('tara', 2), ('lipinski', 1), ('johnny', 14), ('weir', 1), ('roman', 3), ('tortoise', 3), ('gorillagram', 1), ('employee', 89), ('sunglasses', 11), ('frighten', 6), ('bed', 39), ('indict', 15), ('situation', 16), ('bin', 30), ('lade', 20), ('ukraine', 19), ('kroger', 2), ('beef', 16), ('runners', 4), ('truly', 21), ('balvin', 2), ('hispanic', 8), ('toddlers', 9), ('wave', 32), ('hello', 4), ('ghost', 18), ('mine', 13), ('wiz', 2), ('khalifa', 1), ('fetty', 1), ('wap', 1), ('omi', 1), ('summer', 89), ('civil', 35), ('unrest', 4), ('sierra', 5), ('leone', 4), ('npr', 11), ('listener', 5), ('platinum', 2), ('flynn', 13), ('immunity', 5), ('malik', 3), ('kareem', 2), ('conspire', 2), ('grrrl', 1), ('ton', 9), ('potato', 8), ('taco', 21), ('bell', 32), ('menu', 12), ('item', 9), ('simpson', 13), ('hsn', 1), ('buddies', 4), ('melissa', 9), ('click', 8), ('dispense', 2), ('detonate', 3), ('rehearsal', 2), ('spider', 16), ('educate', 12), ('googlers', 1), ('fair', 31), ('pasty', 1), ('club', 37), ('information', 22), ('macho', 1), ('attitude', 6), ('consequences', 9), ('bernin', 1), ('brooklyn', 15), ('religion', 18), ('certainty', 1), ('conduct', 12), ('moral', 12), ('reckon', 4), ('repair', 9), ('private', 43), ('contractor', 3), ('jihadists', 1), ('kurds', 4), ('defeat', 26), ('zuckerberg', 32), ('philanthropist', 2), ('mutual', 3), ('woodcrafts', 1), ('brazil', 19), ('dilma', 2), ('rousseff', 2), ('impeachment', 8), ('trial', 37), ('serial', 25), ('murderers', 2), ('appreciation', 3), ('albert', 3), ('depth', 3), ('veil', 3), ('medicine', 17), ('practitioner', 2), ('method', 9), ('payment', 8), ('ramadan', 6), ('salaries', 1), ('adopt', 19), ('doe', 1), ('amend', 4), ('broth', 4), ('biblical', 5), ('punishments', 1), ('immigrant', 38), ('sudan', 6), ('skater', 5), ('garbage', 12), ('folks', 10), ('bette', 5), ('midler', 5), ('openly', 13), ('asp', 1), ('dumbasses', 1), ('whose', 17), ('existence', 13), ('journalism', 8), ('adore', 2), ('pratt', 4), ('tot', 1), ('feelers', 1), ('crusade', 4), ('wolf', 23), ('blitzer', 7), ('deck', 8), ('sox', 2), ('greece', 16), ('milan', 2), ('grade', 29), ('apeshit', 1), ('giver', 1), ('professors', 8), ('oppose', 18), ('ag', 1), ('vomit', 17), ('slap', 8), ('strictest', 2), ('safe', 30), ('copycats', 1), ('nebraska', 2), ('greatness', 4), ('boil', 8), ('maxine', 3), ('dishonorable', 2), ('despicable', 4), ('flush', 8), ('toilets', 3), ('billions', 14), ('gallons', 5), ('annually', 9), ('rebuff', 1), ('opioid', 15), ('task', 9), ('emergency', 30), ('aerial', 1), ('prisons', 5), ('nurture', 3), ('craigslist', 7), ('interior', 20), ('feverishly', 1), ('booby', 3), ('mirena', 1), ('blade', 4), ('intrauterine', 1), ('sperm', 4), ('shredder', 2), ('eckhart', 2), ('hank', 3), ('institute', 10), ('preparedness', 1), ('farmers', 12), ('unkempt', 2), ('hawk', 10), ('blast', 55), ('refresh', 7), ('scent', 8), ('undies', 1), ('panty', 2), ('glaad', 2), ('horner', 2), ('titanic', 6), ('denny', 9), ('omelet', 3), ('gillian', 1), ('jacobs', 1), ('kiss', 26), ('adam', 23), ('brody', 2), ('tunnel', 12), ('speaker', 20), ('street', 79), ('mo', 5), ('fetish', 5), ('photography', 6), ('helmut', 1), ('kohl', 2), ('harmful', 5), ('uv', 1), ('radiation', 1), ('shots', 14), ('wnba', 2), ('champion', 14), ('democracy', 27), ('collegiate', 1), ('movement', 35), ('collapse', 29), ('fighter', 7), ('smug', 6), ('hometown', 15), ('caliphate', 1), ('writer', 32), ('theall', 1), ('memoir', 15), ('supremacy', 10), ('wallet', 8), ('palahniuk', 1), ('novels', 4), ('pepsi', 6), ('specifically', 11), ('demographic', 14), ('doughnut', 2), ('byrne', 4), ('moira', 1), ('mactaggert', 1), ('x', 29), ('apocalypse', 5), ('ellis', 3), ('myung', 1), ('pulp', 2), ('allegedly', 29), ('willow', 3), ('emerge', 30), ('trend', 29), ('october', 5), ('santa', 31), ('oblige', 1), ('snooze', 4), ('camera', 28), ('corey', 5), ('flintoff', 1), ('sonorous', 1), ('pleasantly', 4), ('modulate', 1), ('string', 15), ('obscenities', 1), ('unfit', 4), ('consumption', 8), ('yin', 1), ('inroads', 1), ('yang', 4), ('grandmother', 38), ('bid', 32), ('grandbaby', 1), ('gaga', 18), ('aphasia', 1), ('empty', 36), ('fullness', 1), ('broker', 6), ('happily', 6), ('bleak', 1), ('futuristic', 4), ('trickortreatin', 1), ('alligator', 3), ('python', 4), ('lock', 37), ('duel', 4), ('ufos', 3), ('classy', 3), ('porcelain', 1), ('dinnerware', 1), ('carbon', 14), ('scare', 9), ('garland', 9), ('superbly', 1), ('exhaust', 27), ('olympians', 4), ('decathlon', 1), ('climb', 14), ('forbid', 8), ('midnight', 12), ('bowlmate', 1), ('ugliest', 3), ('thinkers', 1), ('surreality', 1), ('grace', 16), ('graveyard', 2), ('marrow', 1), ('caylee', 1), ('oval', 11), ('seriously', 24), ('rad', 4), ('snapcash', 1), ('peer', 13), ('newlywed', 3), ('sheet', 10), ('lighter', 3), ('blaze', 7), ('hottest', 8), ('seediest', 1), ('pandas', 1), ('joss', 1), ('whedon', 1), ('compare', 30), ('ivanka', 28), ('herbs', 1), ('spice', 14), ('watercolor', 1), ('memories', 11), ('candidacy', 2), ('peak', 10), ('cashier', 16), ('counterterrorism', 1), ('coward', 4), ('innocent', 13), ('usa', 17), ('rio', 10), ('demon', 3), ('crawl', 15), ('papal', 5), ('oxiclean', 1), ('stain', 8), ('remove', 56), ('scissor', 2), ('thoughtful', 4), ('ignore', 41), ('charlie', 11), ('sheen', 2), ('safeguard', 2), ('cognitive', 2), ('siblings', 12), ('relieve', 31), ('oldest', 10), ('brother', 40), ('hampshire', 23), ('kentucky', 15), ('clerk', 14), ('davis', 20), ('contempt', 7), ('hut', 11), ('meat', 33), ('sympathizer', 1), ('tobacco', 6), ('magna', 2), ('carta', 2), ('senator', 64), ('manchin', 1), ('curb', 16), ('koreas', 1), ('unify', 2), ('flag', 38), ('opener', 3), ('pardon', 15), ('topic', 6), ('praia', 1), ('de', 27), ('iracema', 1), ('incentives', 2), ('tuesday', 26), ('overhaul', 1), ('waitlists', 1), ('libraries', 3), ('cheetah', 3), ('print', 17), ('wong', 2), ('mini', 11), ('parachute', 2), ('akon', 1), ('puerto', 37), ('rico', 29), ('bridesmaids', 3), ('circle', 21), ('arena', 5), ('rescuers', 5), ('heroically', 4), ('pipe', 9), ('thugs', 1), ('delegate', 4), ('tanner', 1), ('clue', 11), ('indoor', 4), ('autumn', 2), ('procter', 2), ('gamble', 7), ('menstruation', 2), ('own', 24), ('fictitious', 1), ('patti', 4), ('labelle', 1), ('aretha', 5), ('franklin', 8), ('supposedly', 2), ('lecture', 4), ('wildfires', 9), ('crucial', 7), ('environment', 18), ('testimony', 15), ('royal', 37), ('proper', 9), ('inbreeding', 1), ('moderator', 9), ('silent', 13), ('exit', 22), ('cherokee', 2), ('il', 3), ('depot', 11), ('bluetooth', 2), ('cordless', 3), ('request', 27), ('envoy', 2), ('reno', 3), ('missionary', 2), ('popular', 38), ('manufacturer', 4), ('fresh', 16), ('decade', 12), ('steve', 49), ('bannon', 30), ('bumbum', 1), ('nsfw', 15), ('iranian', 15), ('fema', 9), ('cherry', 6), ('tomato', 7), ('wily', 1), ('bastard', 12), ('joan', 13), ('rivers', 12), ('pilot', 15), ('cockpit', 4), ('alps', 1), ('cvs', 8), ('marvel', 21), ('judicial', 4), ('confusion', 3), ('reception', 3), ('endorse', 29), ('distance', 12), ('specificity', 1), ('robot', 14), ('attend', 42), ('indie', 4), ('hong', 8), ('kong', 8), ('shameless', 5), ('marketers', 3), ('honest', 13), ('contradictions', 2), ('chic', 5), ('jews', 11), ('covenant', 2), ('renewal', 3), ('guilt', 4), ('stacey', 4), ('abrams', 12), ('leno', 6), ('reconsider', 3), ('georgia', 27), ('crotch', 5), ('firefighter', 12), ('racist', 47), ('homeland', 14), ('elite', 7), ('army', 28), ('unit', 4), ('liberia', 2), ('advisors', 6), ('william', 19), ('barr', 10), ('liege', 1), ('tirelessly', 1), ('achieve', 15), ('events', 12), ('wwii', 7), ('mislead', 9), ('false', 18), ('ethanol', 1), ('skinny', 4), ('quite', 15), ('coke', 6), ('cujo', 1), ('doll', 7), ('worsen', 4), ('worthwhile', 4), ('chain', 25), ('radiator', 3), ('pelosi', 13), ('panic', 54), ('shove', 7), ('democrat', 11), ('harsh', 7), ('treatment', 31), ('mohammad', 1), ('salman', 3), ('chappelle', 5), ('kourtney', 8), ('disick', 7), ('television', 31), ('interruption', 2), ('ms', 5), ('hulk', 5), ('strongman', 2), ('dateline', 2), ('nbc', 24), ('actual', 23), ('munsters', 1), ('mel', 3), ('kiper', 1), ('spreadsheet', 1), ('belittle', 3), ('tirade', 3), ('eco', 8), ('alexandra', 2), ('zissu', 1), ('archery', 1), ('technology', 25), ('voiceless', 1), ('pump', 13), ('germany', 12), ('abortions', 8), ('naral', 1), ('dreamers', 15), ('paxton', 3), ('revolutionary', 4), ('nypd', 14), ('catcher', 1), ('rye', 1), ('backpack', 6), ('spooky', 4), ('offend', 15), ('rude', 3), ('interrupt', 14), ('espn', 10), ('broadcaster', 3), ('todd', 7), ('imitate', 8), ('yoda', 1), ('military', 72), ('provocation', 1), ('surprisingly', 8), ('upbeat', 3), ('meds', 1), ('technically', 2), ('autism', 12), ('coverage', 18), ('vagina', 9), ('addictive', 3), ('ya', 7), ('upon', 20), ('insecurity', 2), ('inactivity', 1), ('trust', 31), ('greenlit', 1), ('syrians', 6), ('worthless', 5), ('goodnight', 1), ('duvall', 1), ('captivate', 7), ('conscious', 18), ('excitedly', 9), ('kelley', 2), ('extend', 23), ('predator', 10), ('chemo', 2), ('dash', 5), ('guinness', 6), ('meter', 3), ('huntsman', 5), ('lurk', 6), ('pedicure', 1), ('tubs', 1), ('sigh', 11), ('unease', 1), ('pudgy', 1), ('rosy', 1), ('cheek', 1), ('chocolate', 14), ('mccain', 44), ('nyse', 1), ('reinforcin', 1), ('stereotype', 12), ('dodger', 1), ('stadium', 15), ('hispanics', 3), ('rant', 18), ('sexualize', 2), ('octogenarian', 2), ('flapper', 1), ('expand', 26), ('sanction', 12), ('grant', 26), ('lucidity', 1), ('lopez', 8), ('bumble', 3), ('bee', 30), ('tuna', 5), ('circular', 4), ('pocket', 15), ('adventure', 12), ('instructional', 2), ('coach', 24), ('haley', 8), ('infinity', 3), ('scarf', 3), ('jesmyn', 1), ('ward', 8), ('reap', 2), ('deposit', 5), ('springsteen', 10), ('concert', 30), ('roommate', 24), ('masturbation', 2), ('vaxxers', 3), ('deniers', 3), ('uncertainty', 5), ('reprehensible', 1), ('attractive', 15), ('sonic', 4), ('hedgehog', 3), ('cosplay', 1), ('fix', 36), ('futures', 5), ('psychiatry', 1), ('gilligan', 2), ('spoil', 6), ('paris', 48), ('explorer', 5), ('hague', 2), ('tribunal', 3), ('crimes', 25), ('pregnant', 45), ('patients', 19), ('terminate', 1), ('quake', 2), ('cent', 9), ('surcharge', 1), ('arete', 2), ('businessman', 11), ('bath', 17), ('craig', 11), ('kilborn', 3), ('stride', 4), ('corridors', 1), ('powerlessness', 1), ('haze', 8), ('rituals', 4), ('foreign', 40), ('policy', 56), ('approval', 16), ('parliament', 9), ('referendum', 4), ('owe', 9), ('listeners', 4), ('charmin', 1), ('disposable', 1), ('toilet', 20), ('comedy', 29), ('courage', 9), ('extravagant', 1), ('blind', 20), ('venice', 4), ('encounter', 11), ('disavow', 3), ('scorpions', 2), ('algorithm', 10), ('hitler', 7), ('speeches', 5), ('nighter', 5), ('illuminate', 2), ('payne', 2), ('constellations', 1), ('neurosurgeon', 1), ('heckle', 5), ('observation', 2), ('ninth', 3), ('digitize', 2), ('cube', 6), ('sink', 23), ('skateboarder', 2), ('shred', 15), ('soar', 10), ('noble', 5), ('eagle', 13), ('fleet', 6), ('stem', 8), ('container', 9), ('vault', 5), ('overwork', 5), ('unearth', 8), ('fully', 21), ('intact', 8), ('negotiations', 3), ('penis', 20), ('wince', 3), ('eddie', 9), ('twain', 4), ('foreigners', 2), ('africa', 22), ('sunshine', 4), ('veto', 9), ('mexican', 36), ('federal', 69), ('participate', 10), ('disappearance', 4), ('mogul', 5), ('dunk', 4), ('result', 50), ('angel', 17), ('bystanders', 4), ('skirt', 5), ('hideous', 5), ('thigh', 3), ('andes', 1), ('mountains', 5), ('dvd', 15), ('toastables', 1), ('microwavable', 1), ('toast', 8), ('cargo', 5), ('iss', 2), ('array', 4), ('josh', 11), ('gordon', 8), ('rehab', 8), ('louie', 2), ('gohmert', 2), ('terror', 33), ('seattle', 16), ('needle', 5), ('rain', 18), ('civilians', 13), ('wound', 12), ('pommel', 1), ('male', 44), ('babysitter', 6), ('chef', 13), ('voltaggio', 1), ('yelp', 8), ('reflex', 2), ('motorcade', 4), ('drawbridge', 1), ('bicycle', 4), ('rotary', 1), ('telephone', 6), ('jug', 2), ('survivalist', 1), ('pennsylvania', 19), ('trooper', 3), ('publicity', 3), ('badge', 7), ('sen', 16), ('compromise', 8), ('brandon', 4), ('impulse', 4), ('computer', 28), ('areas', 8), ('rex', 20), ('warrior', 3), ('kinko', 1), ('patron', 11), ('switcheroo', 1), ('presidency', 23), ('uncouple', 2), ('wimping', 1), ('quench', 1), ('thirst', 3), ('architectural', 1), ('revitalize', 2), ('communities', 18), ('crap', 9), ('snoop', 5), ('smartphone', 12), ('apps', 10), ('liability', 2), ('marker', 2), ('antidepressants', 3), ('trace', 18), ('byblos', 1), ('brim', 1), ('thriller', 7), ('jeffery', 1), ('deaver', 2), ('shampoo', 4), ('seem', 42), ('concept', 10), ('winter', 40), ('moby', 2), ('blurry', 3), ('natalie', 4), ('portman', 2), ('cash', 38), ('analysis', 8), ('flasher', 1), ('trench', 3), ('coat', 15), ('knees', 4), ('cornel', 1), ('shatner', 2), ('leonard', 4), ('nimoy', 2), ('cold', 37), ('anger', 28), ('restless', 2), ('fanatically', 1), ('devote', 6), ('nerd', 6), ('potentially', 3), ('simon', 7), ('pegg', 1), ('lousy', 2), ('soak', 11), ('em', 6), ('pan', 10), ('lone', 18), ('oliver', 16), ('individual', 9), ('masturbatory', 1), ('prose', 3), ('climax', 1), ('celestial', 2), ('utopia', 2), ('pleasure', 8), ('evangelical', 8), ('haggard', 4), ('lip', 8), ('albanian', 2), ('tycoon', 3), ('codfather', 1), ('smuggle', 5), ('physician', 3), ('prescriptions', 5), ('limbo', 3), ('example', 6), ('pure', 13), ('meritocracy', 1), ('sanford', 2), ('fiancee', 2), ('blimp', 1), ('luxury', 5), ('tesla', 13), ('tumor', 8), ('chester', 3), ('cheesy', 1), ('access', 30), ('marijuana', 41), ('morph', 3), ('deere', 1), ('lawnmower', 2), ('sidecars', 1), ('direction', 9), ('homophobic', 6), ('gulf', 6), ('mexico', 38), ('opec', 1), ('spew', 4), ('peeve', 2), ('batman', 9), ('superman', 7), ('filmgoers', 1), ('dccc', 1), ('investment', 9), ('pivot', 2), ('hamster', 3), ('properly', 8), ('shoebox', 1), ('wow', 14), ('erykah', 1), ('badu', 1), ('dea', 4), ('bribe', 6), ('hashtag', 10), ('chicagoans', 1), ('quality', 19), ('nabisco', 6), ('baffle', 7), ('contract', 21), ('rebuild', 7), ('roads', 6), ('april', 15), ('robocop', 1), ('main', 6), ('robotic', 4), ('policeman', 3), ('scramble', 17), ('biography', 3), ('einstein', 2), ('devise', 4), ('theory', 33), ('relativity', 1), ('microsoft', 16), ('bieber', 13), ('cornrow', 1), ('cds', 6), ('soup', 11), ('oft', 1), ('tongue', 7), ('unceremoniously', 1), ('dye', 5), ('jyothi', 1), ('rao', 1), ('thread', 3), ('authenticity', 4), ('patrons', 12), ('dismay', 3), ('mad', 30), ('artists', 22), ('tackle', 21), ('vaguely', 2), ('unnerve', 5), ('pantyhose', 2), ('rack', 6), ('kmart', 2), ('jeffreyton', 1), ('believable', 3), ('dishonorably', 1), ('discharge', 2), ('navigation', 1), ('airasia', 2), ('vanish', 7), ('brad', 14), ('pitt', 13), ('forehead', 5), ('prostitute', 5), ('traveler', 8), ('jackie', 3), ('chan', 3), ('ancestors', 2), ('sham', 14), ('blooper', 2), ('reel', 7), ('chin', 2), ('ed', 20), ('sheeran', 4), ('accountable', 7), ('rome', 6), ('newtown', 5), ('pedophilia', 5), ('france', 32), ('nazi', 13), ('tragedy', 14), ('kangaroo', 3), ('unsuspecting', 4), ('australia', 18), ('awake', 11), ('toner', 3), ('cartridges', 1), ('hamburger', 4), ('toppings', 3), ('hurl', 6), ('msnbc', 5), ('fascist', 4), ('wackiest', 2), ('items', 25), ('dunbar', 1), ('discontinue', 10), ('edition', 23), ('newsletter', 1), ('cambridge', 13), ('analytica', 8), ('audit', 2), ('injustice', 3), ('mandatory', 8), ('minimums', 1), ('trophy', 7), ('ck', 2), ('nonprofit', 10), ('burnouts', 1), ('blitz', 4), ('salads', 4), ('crave', 14), ('hanes', 5), ('fruit', 18), ('loom', 15), ('soulmate', 4), ('preet', 2), ('bharara', 2), ('manafort', 18), ('overweight', 17), ('weight', 51), ('environmentalists', 4), ('swedish', 5), ('sour', 4), ('lennon', 6), ('bland', 6), ('uninspired', 5), ('incest', 3), ('congressmembers', 1), ('doritos', 9), ('nominees', 9), ('dr', 22), ('krugman', 5), ('rave', 9), ('phoenix', 6), ('seaworld', 16), ('shark', 26), ('feasible', 1), ('snack', 16), ('paralyze', 7), ('determine', 38), ('sedentary', 2), ('successfully', 11), ('artificial', 5), ('placenta', 2), ('taste', 26), ('delicious', 20), ('ana', 4), ('navarro', 3), ('snowflakes', 1), ('smooth', 7), ('frost', 6), ('wheats', 1), ('norwegian', 4), ('curl', 6), ('pant', 31), ('spill', 28), ('initial', 6), ('estimate', 5), ('shady', 4), ('amal', 5), ('clooney', 11), ('adolescent', 3), ('stepfather', 4), ('dutch', 5), ('embassy', 8), ('fact', 22), ('islamophobic', 4), ('retweet', 1), ('embroider', 1), ('tsunami', 3), ('katrina', 5), ('kashmir', 2), ('earthquake', 14), ('disasty', 1), ('minimum', 16), ('wage', 27), ('fold', 7), ('crocs', 2), ('dagger', 3), ('nia', 1), ('belt', 9), ('nakba', 1), ('intertwine', 1), ('inseparable', 2), ('rapid', 1), ('will', 19), ('selena', 10), ('gomez', 8), ('scenes', 9), ('sweat', 23), ('emporia', 1), ('kansas', 25), ('rational', 4), ('preclude', 1), ('overreaction', 1), ('proceed', 2), ('reverently', 2), ('pleas', 3), ('unanswered', 2), ('ankle', 5), ('dana', 3), ('wellness', 2), ('monsanto', 7), ('flaw', 9), ('reuters', 4), ('widower', 5), ('afterburners', 1), ('packers', 1), ('minnesota', 17), ('gentrify', 3), ('eastern', 4), ('dawkins', 2), ('betray', 7), ('possible', 48), ('shelf', 9), ('signal', 11), ('neurons', 1), ('allow', 88), ('imagine', 31), ('imperioli', 1), ('moyers', 1), ('departure', 3), ('nikki', 8), ('swipe', 4), ('amnesty', 3), ('dewey', 1), ('decimal', 1), ('helpless', 5), ('categorize', 1), ('jim', 33), ('belushi', 1), ('poster', 21), ('toot', 1), ('horn', 8), ('molasses', 1), ('crock', 2), ('accusations', 11), ('clarity', 3), ('arts', 6), ('statistically', 3), ('happiness', 22), ('runaways', 1), ('neglect', 11), ('massachusetts', 9), ('hurdle', 4), ('spotify', 4), ('publisher', 5), ('petty', 5), ('lab', 11), ('roberts', 11), ('eulogize', 1), ('antonin', 5), ('scalia', 21), ('panama', 5), ('fraud', 24), ('fine', 26), ('casa', 2), ('spazio', 1), ('leather', 10), ('sofas', 1), ('pizzas', 2), ('santorum', 8), ('beliefs', 6), ('outlandish', 2), ('headline', 16), ('grieve', 14), ('spa', 2), ('risky', 4), ('activity', 9), ('halperin', 2), ('profoundly', 2), ('residency', 3), ('detox', 2), ('knowshon', 1), ('moreno', 1), ('broncos', 5), ('besides', 6), ('gatorade', 2), ('debunk', 5), ('pave', 8), ('nihilistic', 2), ('overhead', 6), ('dude', 10), ('uk', 17), ('retailer', 1), ('label', 15), ('theorize', 4), ('fearless', 4), ('slow', 20), ('uruguay', 2), ('polarize', 2), ('colossus', 1), ('nationalism', 4), ('cooperative', 1), ('multicultural', 3), ('manifesto', 1), ('radicalize', 3), ('patagonia', 2), ('fleece', 2), ('recycle', 6), ('ceos', 6), ('elder', 3), ('kellie', 1), ('pickler', 1), ('buzzer', 2), ('coulier', 1), ('fuller', 4), ('frat', 7), ('hotness', 3), ('scale', 10), ('cranky', 1), ('brightly', 1), ('wildfire', 13), ('sur', 2), ('wade', 4), ('udonis', 1), ('haslem', 1), ('lebron', 13), ('opt', 9), ('attorney', 26), ('general', 51), ('vegetarian', 8), ('routine', 19), ('scan', 10), ('tender', 5), ('lump', 3), ('neck', 19), ('epa', 43), ('environmentalism', 3), ('defunded', 1), ('reassure', 7), ('victim', 28), ('faculty', 3), ('ridicule', 5), ('mercilessly', 3), ('lounge', 6), ('execute', 18), ('loretta', 4), ('stalemate', 1), ('directv', 2), ('acquisition', 1), ('recession', 7), ('memoirs', 2), ('application', 7), ('sample', 8), ('opinions', 10), ('justices', 8), ('mull', 4), ('jordan', 18), ('fahrenheit', 2), ('unmoved', 2), ('grandchildren', 5), ('pointer', 3), ('charlize', 6), ('theron', 6), ('stagnant', 1), ('infrastructure', 11), ('boulders', 1), ('oklahoma', 16), ('found', 8), ('abraham', 2), ('orville', 2), ('redenbacher', 1), ('realness', 1), ('everybody', 13), ('uncomfortable', 13), ('puppeteer', 1), ('spoon', 6), ('rinse', 1), ('befriend', 4), ('dobby', 1), ('elf', 3), ('generosity', 2), ('humble', 8), ('maya', 5), ('angelou', 4), ('author', 31), ('editor', 20), ('streetcar', 2), ('conductor', 4), ('calypso', 1), ('nightclub', 8), ('performer', 5), ('journalist', 27), ('glaze', 3), ('whenever', 7), ('plunge', 17), ('serf', 1), ('subjugation', 1), ('bangladesh', 5), ('dodge', 5), ('creative', 23), ('kindness', 6), ('prego', 3), ('quash', 2), ('peaceful', 5), ('unlawful', 1), ('assembly', 6), ('houston', 13), ('neighborhoods', 3), ('baghdad', 6), ('highlight', 22), ('obituary', 9), ('gethard', 1), ('banana', 13), ('peel', 5), ('gov', 17), ('kalief', 2), ('browder', 2), ('harriet', 5), ('tubman', 4), ('possessions', 2), ('prank', 11), ('simulate', 4), ('ideal', 4), ('critically', 5), ('representatives', 6), ('magically', 3), ('cecily', 1), ('defy', 9), ('stoner', 3), ('underpaved', 1), ('fantasize', 11), ('coolio', 1), ('felony', 3), ('firearm', 4), ('possession', 3), ('reminder', 26), ('isaac', 1), ('hamlet', 1), ('define', 13), ('introvert', 6), ('wary', 4), ('jackson', 27), ('hologram', 2), ('transcontinental', 1), ('breeze', 2), ('nun', 4), ('beer', 39), ('fests', 1), ('firefighters', 9), ('visine', 2), ('whiten', 5), ('groom', 7), ('bride', 17), ('radiant', 3), ('pottery', 4), ('dinosaur', 6), ('skeleton', 8), ('tae', 1), ('kwon', 1), ('instructor', 11), ('pair', 20), ('mismatch', 1), ('worldwide', 14), ('decay', 7), ('uninformed', 4), ('buffoon', 2), ('comprehend', 2), ('marie', 4), ('claire', 4), ('lover', 11), ('rabbit', 9), ('southern', 10), ('cryptographers', 1), ('frpx', 1), ('je', 2), ('oc', 1), ('dn', 1), ('recreation', 2), ('chip', 12), ('evade', 5), ('digestive', 3), ('burrow', 1), ('armageddon', 2), ('zippori', 1), ('premier', 7), ('archaeological', 2), ('tough', 20), ('adorable', 55), ('deport', 5), ('capitol', 17), ('quinoa', 2), ('bean', 14), ('layer', 5), ('protein', 4), ('selig', 1), ('immigrants', 40), ('piano', 7), ('deportation', 11), ('rogen', 3), ('dms', 1), ('fearmongers', 1), ('warmongers', 1), ('annual', 29), ('monger', 1), ('faa', 9), ('advise', 9), ('asiana', 1), ('airlines', 33), ('statue', 24), ('furlough', 7), ('upstairs', 4), ('stack', 9), ('roster', 3), ('thai', 8), ('spicy', 7), ('online', 70), ('turkish', 13), ('soccer', 30), ('penalize', 3), ('kurdish', 3), ('kingpin', 2), ('grandmas', 2), ('halt', 15), ('afghan', 20), ('blanket', 8), ('keynote', 4), ('enlighten', 1), ('misjudge', 1), ('intensity', 3), ('feminist', 17), ('counselor', 7), ('recommendation', 5), ('fool', 14), ('outside', 70), ('oath', 10), ('easier', 14), ('sahm', 1), ('acquaintance', 6), ('elaborate', 9), ('efficient', 1), ('bulbs', 3), ('tapper', 6), ('nastier', 1), ('lemon', 6), ('bucket', 11), ('squat', 2), ('donut', 9), ('exercise', 25), ('briefly', 14), ('coal', 10), ('denier', 3), ('docs', 3), ('liv', 1), ('mindfulness', 9), ('calm', 15), ('iraqis', 3), ('craze', 11), ('orkin', 1), ('correctness', 1), ('command', 3), ('behavior', 21), ('extinction', 6), ('conservation', 8), ('viewer', 12), ('weasels', 1), ('spacey', 6), ('organ', 3), ('kidney', 6), ('renew', 14), ('glad', 18), ('wanda', 2), ('sykes', 1), ('diss', 2), ('extraordinary', 5), ('india', 30), ('gymnast', 4), ('joy', 23), ('arthritis', 1), ('largely', 5), ('cents', 5), ('brisket', 1), ('bbq', 2), ('fest', 7), ('fence', 15), ('enclosure', 1), ('qaeda', 18), ('excitement', 6), ('combat', 14), ('naderite', 1), ('loyalists', 2), ('construction', 14), ('gina', 11), ('haspel', 5), ('prisoners', 13), ('mosque', 9), ('playground', 3), ('pug', 6), ('italian', 16), ('podiatrists', 1), ('rotate', 9), ('musician', 4), ('row', 26), ('inmate', 15), ('curious', 11), ('lethal', 8), ('injection', 8), ('crow', 9), ('caw', 1), ('jorge', 2), ('ramos', 2), ('breyer', 4), ('bastards', 3), ('terrorism', 23), ('gta', 1), ('sophisticate', 2), ('sicario', 1), ('denis', 2), ('villeneuve', 1), ('senseless', 3), ('hugh', 9), ('preach', 3), ('responsibility', 12), ('reluctantly', 6), ('mailbox', 4), ('jeremy', 5), ('piven', 4), ('pbs', 8), ('selfridge', 1), ('podcast', 16), ('depress', 42), ('freelancers', 2), ('riot', 13), ('gratuitous', 1), ('boyfriends', 2), ('internship', 4), ('brady', 11), ('reporter', 45), ('nationalist', 5), ('inauguration', 25), ('festivities', 1), ('ceremonial', 3), ('flyover', 2), ('montreal', 2), ('osm', 1), ('couche', 1), ('tard', 1), ('vir', 1), ('classique', 1), ('attendance', 4), ('chart', 15), ('width', 2), ('heartbreaking', 17), ('biodiversity', 2), ('buss', 1), ('species', 34), ('ecosystems', 1), ('correspondents', 6), ('association', 12), ('fantasy', 24), ('prophesy', 1), ('famed', 2), ('homaro', 1), ('cantu', 1), ('yellowstone', 7), ('wildest', 4), ('swallow', 9), ('luggage', 3), ('producers', 14), ('aerobics', 4), ('enthusiast', 3), ('crystal', 6), ('ho', 5), ('logically', 1), ('challenger', 3), ('birmingham', 2), ('frontline', 1), ('raft', 2), ('drown', 14), ('gadget', 1), ('instrument', 2), ('plague', 6), ('inc', 3), ('darren', 7), ('alexandria', 6), ('ahca', 2), ('hungry', 8), ('weaken', 7), ('protections', 7), ('macaroni', 4), ('gently', 9), ('development', 10), ('episodes', 4), ('collision', 5), ('pageviews', 1), ('overestimate', 2), ('looters', 3), ('chlorine', 1), ('tablets', 4), ('uphold', 10), ('legacy', 24), ('blindly', 1), ('grumble', 2), ('rehabilitate', 2), ('prisoner', 10), ('banker', 2), ('insider', 7), ('catholics', 4), ('hayley', 2), ('rocker', 3), ('chad', 1), ('gilbert', 4), ('plural', 1), ('crosshairs', 4), ('angels', 5), ('floppy', 2), ('disk', 2), ('autocratic', 2), ('scrap', 8), ('participants', 3), ('sonny', 2), ('perdue', 1), ('rebuttal', 2), ('provider', 5), ('smite', 1), ('fetishist', 2), ('eric', 40), ('cantor', 5), ('retain', 7), ('ruffle', 1), ('kayak', 2), ('nobody', 35), ('unless', 16), ('redrawing', 2), ('childfree', 2), ('chaffetz', 3), ('cummings', 2), ('governments', 3), ('molly', 2), ('hatchet', 2), ('lindsay', 6), ('lohan', 3), ('stint', 1), ('w', 33), ('cor', 1), ('twist', 17), ('maturity', 3), ('canonize', 4), ('tradition', 11), ('rollerblade', 2), ('offense', 6), ('andy', 9), ('samberg', 2), ('witch', 9), ('hierarchy', 1), ('braid', 1), ('erase', 8), ('teenagers', 7), ('britain', 15), ('sephora', 3), ('corbyn', 1), ('pr', 9), ('disaster', 30), ('pregnancy', 34), ('entertainment', 19), ('retention', 2), ('sebastian', 2), ('junger', 1), ('korengal', 1), ('telemarketers', 1), ('undergo', 9), ('extensive', 6), ('interrogation', 5), ('falafel', 4), ('radically', 2), ('reshape', 5), ('systems', 10), ('breakups', 1), ('witness', 14), ('allege', 34), ('cardell', 1), ('hay', 4), ('waiter', 6), ('splurge', 3), ('derail', 9), ('neither', 8), ('practical', 1), ('detain', 18), ('spanish', 12), ('khizr', 1), ('khan', 6), ('compass', 3), ('aurora', 5), ('amber', 8), ('riley', 1), ('curvy', 4), ('medieval', 2), ('prayer', 9), ('margins', 3), ('option', 13), ('lettuce', 3), ('site', 33), ('palestine', 4), ('require', 31), ('revive', 8), ('coral', 6), ('reef', 7), ('evidently', 3), ('cake', 32), ('shockingly', 3), ('trek', 7), ('underground', 5), ('constantly', 16), ('verify', 6), ('presence', 7), ('camel', 2), ('dollar', 18), ('karen', 5), ('sum', 21), ('grey', 12), ('anatomy', 6), ('caterina', 1), ('scorsone', 1), ('toback', 2), ('slang', 3), ('tomi', 6), ('adeyemi', 1), ('bask', 3), ('troll', 30), ('premiere', 22), ('maggot', 2), ('urgent', 3), ('reincarnation', 3), ('flagrantly', 2), ('reproductive', 6), ('organs', 5), ('discrimination', 15), ('kowtow', 1), ('incompetents', 1), ('hypnotist', 1), ('gimmick', 1), ('hypnotists', 1), ('mask', 22), ('vigilante', 3), ('exhaustive', 1), ('probe', 42), ('dehydration', 3), ('canada', 15), ('wren', 2), ('relapse', 2), ('ireland', 6), ('vastly', 2), ('internally', 1), ('smaller', 13), ('creature', 5), ('confessions', 5), ('oyster', 4), ('cracker', 2), ('beatles', 5), ('unreleased', 5), ('weary', 7), ('gwyneth', 8), ('paltrow', 8), ('testify', 12), ('composer', 1), ('dan', 11), ('licht', 1), ('dexter', 3), ('comcast', 3), ('approach', 17), ('assets', 3), ('latte', 2), ('designers', 7), ('bow', 10), ('slightly', 18), ('inch', 19), ('appoint', 12), ('expertise', 4), ('publish', 20), ('ocasio', 5), ('cortez', 6), ('clippers', 3), ('nba', 27), ('championship', 3), ('hesitate', 2), ('provoke', 2), ('stoke', 6), ('middlebury', 1), ('vermont', 4), ('rezone', 1), ('popeyes', 3), ('ado', 1), ('paragraph', 1), ('insist', 33), ('caf', 11), ('fee', 20), ('hike', 7), ('executive', 49), ('pouch', 2), ('crystals', 1), ('dorm', 13), ('essentials', 7), ('aisle', 11), ('browse', 5), ('studio', 25), ('apartments', 5), ('chant', 13), ('electrical', 2), ('elias', 1), ('koteas', 1), ('olinsky', 1), ('tantalizingly', 1), ('edison', 3), ('manage', 20), ('sedative', 1), ('doo', 4), ('riders', 3), ('lake', 20), ('winneshiek', 1), ('county', 14), ('indeed', 3), ('grads', 3), ('frolic', 2), ('deer', 8), ('formally', 5), ('wookiees', 1), ('excruciate', 4), ('smell', 19), ('edible', 3), ('uss', 2), ('harbor', 7), ('brexit', 11), ('patriots', 5), ('nugget', 2), ('highway', 21), ('crude', 9), ('though', 5), ('ipad', 4), ('oblivious', 2), ('growl', 1), ('motivation', 3), ('subsidies', 3), ('advertiser', 3), ('sponsor', 10), ('gator', 1), ('ann', 14), ('freakin', 1), ('officemax', 1), ('gel', 6), ('pen', 21), ('redmayne', 1), ('crunchy', 2), ('gooey', 1), ('earlier', 9), ('beneath', 11), ('rubber', 2), ('islamophobia', 8), ('jcpenney', 4), ('catalog', 1), ('deepen', 3), ('contributions', 4), ('shep', 1), ('maniac', 2), ('genuine', 6), ('legalize', 14), ('wrestle', 11), ('knee', 9), ('postmistress', 1), ('gaza', 19), ('dislodge', 2), ('jet', 18), ('thick', 6), ('pollute', 5), ('delhi', 1), ('constituency', 2), ('tower', 21), ('skulls', 3), ('aztecs', 1), ('organization', 16), ('orca', 7), ('calf', 5), ('chapter', 8), ('sino', 2), ('vi', 1), ('landfill', 2), ('holiness', 1), ('regift', 1), ('accomplishment', 3), ('viable', 2), ('cia', 37), ('brennan', 1), ('folly', 4), ('curry', 15), ('nursery', 4), ('voluntary', 1), ('hr', 5), ('scrawl', 4), ('assistant', 15), ('scary', 12), ('laurie', 6), ('hernandez', 6), ('underwater', 6), ('harness', 3), ('sentient', 2), ('actively', 3), ('sabotage', 9), ('socially', 1), ('inspiration', 8), ('katwe', 1), ('resilience', 4), ('earliest', 8), ('prototype', 1), ('yayoi', 1), ('kusama', 1), ('statistical', 1), ('expire', 8), ('ciro', 1), ('guerra', 1), ('embrace', 28), ('serpent', 3), ('colombian', 5), ('shamanism', 2), ('socialist', 3), ('cinnabon', 2), ('pastries', 2), ('arabia', 16), ('frazzle', 3), ('legendary', 10), ('comedian', 20), ('employment', 6), ('hmo', 4), ('ethical', 7), ('hunter', 8), ('duck', 15), ('sky', 12), ('troy', 2), ('aikman', 1), ('concussions', 4), ('mutants', 2), ('aboveground', 1), ('shaun', 2), ('account', 37), ('exchange', 26), ('dispatch', 2), ('palpable', 1), ('intentionally', 1), ('malfunction', 5), ('capital', 18), ('nostalgia', 3), ('istanbul', 3), ('anxiety', 24), ('neurosis', 1), ('pneumonia', 1), ('virus', 14), ('clintons', 5), ('attention', 28), ('carrie', 8), ('fisher', 11), ('entertain', 7), ('demi', 6), ('lovato', 6), ('valderrama', 2), ('hearts', 14), ('unexpected', 16), ('heirloom', 3), ('nixonization', 1), ('disgust', 42), ('mcnugget', 2), ('meals', 18), ('distant', 9), ('adviser', 16), ('margaret', 5), ('atwood', 4), ('handmaids', 1), ('hinge', 2), ('tier', 2), ('da', 5), ('vinci', 2), ('litter', 2), ('cigarettes', 12), ('muslims', 30), ('protection', 8), ('mecca', 4), ('pilgrimage', 6), ('obscurity', 1), ('backwards', 4), ('lazy', 15), ('passive', 2), ('income', 18), ('stock', 42), ('dividends', 1), ('depp', 3), ('physically', 7), ('whimsically', 1), ('totter', 2), ('log', 12), ('wobbly', 4), ('plank', 1), ('beam', 2), ('mickey', 5), ('theorist', 3), ('rosenstein', 3), ('cd', 11), ('slowly', 32), ('integrate', 7), ('coyote', 1), ('intercept', 3), ('unnoticed', 3), ('indonesian', 2), ('sew', 4), ('barista', 4), ('restroom', 2), ('ladder', 5), ('nader', 3), ('grandilomentitudinous', 1), ('curt', 6), ('souls', 9), ('wisdom', 10), ('ranger', 7), ('warsaw', 1), ('hymn', 2), ('august', 9), ('canadian', 13), ('pyeongchang', 5), ('boardroom', 6), ('various', 2), ('genitals', 4), ('explanation', 7), ('reassurances', 1), ('wartime', 2), ('atrocity', 1), ('brevity', 1), ('intersectional', 1), ('lane', 14), ('internal', 6), ('weakness', 1), ('oakland', 4), ('gentrification', 9), ('rockwell', 2), ('mediterranean', 7), ('dalai', 2), ('lama', 2), ('augment', 1), ('deadliest', 5), ('scold', 7), ('inquire', 1), ('friendship', 17), ('marqkria', 1), ('dept', 9), ('markers', 2), ('raccoons', 2), ('frontal', 2), ('samantha', 16), ('illegal', 23), ('ears', 7), ('loudly', 8), ('ozone', 2), ('depletion', 1), ('statistics', 3), ('europe', 20), ('birthplace', 4), ('trumpism', 3), ('cousin', 14), ('retweeting', 2), ('pathetic', 17), ('excuse', 17), ('counterpart', 1), ('executions', 5), ('sunnis', 2), ('fallujah', 2), ('hanukkah', 5), ('shame', 16), ('rudder', 2), ('panini', 1), ('succumb', 3), ('howard', 15), ('dyer', 1), ('zoetrope', 1), ('infinite', 2), ('loop', 6), ('lord', 19), ('solitute', 1), ('creek', 7), ('dynamic', 3), ('explicitly', 5), ('armenian', 1), ('genocide', 10), ('chilean', 5), ('velociraptor', 2), ('jurassic', 2), ('battleground', 2), ('tourism', 6), ('bison', 2), ('aww', 1), ('chattman', 2), ('shaw', 1), ('jakrapong', 1), ('kongmalai', 1), ('mentor', 8), ('mammograms', 1), ('auto', 7), ('install', 7), ('brake', 3), ('suvs', 2), ('bernardino', 9), ('uzo', 1), ('aduba', 1), ('emmys', 9), ('nicole', 5), ('wreak', 3), ('havoc', 5), ('bermuda', 2), ('hunters', 6), ('smarter', 4), ('faster', 10), ('cunning', 4), ('pederast', 1), ('adult', 24), ('junk', 7), ('letterbox', 1), ('corker', 4), ('debasement', 1), ('destroy', 51), ('outdoors', 4), ('macy', 7), ('thanksgiving', 42), ('parade', 23), ('pikachu', 2), ('cutest', 8), ('donuts', 10), ('bathrooms', 3), ('typhoon', 1), ('meranti', 1), ('mayhem', 4), ('uphill', 1), ('hotter', 3), ('lollapalooza', 2), ('venture', 5), ('capitalist', 1), ('invest', 11), ('slug', 2), ('enterprise', 2), ('kimye', 4), ('alabama', 30), ('underfunded', 4), ('kindergarten', 6), ('achievement', 7), ('credentials', 1), ('outlets', 4), ('exxonmobil', 7), ('enforcer', 1), ('freeze', 29), ('boulder', 5), ('landslide', 2), ('ravine', 2), ('phillie', 2), ('phanatic', 2), ('honker', 1), ('paperwork', 7), ('comprehension', 2), ('ayn', 1), ('junkie', 6), ('chick', 11), ('arianna', 8), ('contribution', 4), ('skedaddle', 1), ('commit', 28), ('motivate', 5), ('flavorless', 2), ('paste', 1), ('lea', 6), ('romance', 4), ('fake', 46), ('gosling', 5), ('regale', 2), ('vixen', 1), ('psycho', 2), ('trail', 18), ('skyeditor', 1), ('rockette', 1), ('twitch', 3), ('streamer', 1), ('longest', 3), ('destinations', 3), ('futon', 1), ('dolled', 3), ('milo', 8), ('measly', 1), ('refuge', 7), ('bookstore', 7), ('regime', 4), ('impart', 3), ('trumpbacktoschooltips', 1), ('undo', 6), ('handiwork', 1), ('checkout', 4), ('latina', 5), ('napa', 1), ('pattern', 8), ('parallel', 7), ('register', 17), ('sleepy', 5), ('tire', 48), ('colmes', 3), ('unreported', 1), ('barnes', 5), ('stripper', 7), ('tch', 1), ('homophobes', 1), ('tactic', 1), ('pub', 3), ('liquor', 7), ('excellence', 4), ('tacit', 1), ('toyota', 3), ('kylie', 21), ('bros', 8), ('suitcase', 5), ('cod', 5), ('authorize', 3), ('collateral', 3), ('paramedic', 3), ('assemblage', 1), ('visible', 13), ('cooler', 11), ('transphobic', 4), ('marcel', 1), ('duchamp', 1), ('awe', 6), ('frog', 8), ('ah', 1), ('extinct', 7), ('cosby', 19), ('defamation', 6), ('four', 40), ('allergies', 6), ('revel', 3), ('deaths', 18), ('dads', 20), ('knopfler', 1), ('index', 3), ('claw', 3), ('accusers', 10), ('forward', 44), ('steadily', 1), ('seniors', 11), ('airbnb', 6), ('wireless', 5), ('amphitheater', 2), ('decker', 4), ('whacker', 1), ('fetid', 1), ('revolutionize', 4), ('sewage', 5), ('dimon', 1), ('relentless', 1), ('desire', 9), ('busybody', 2), ('fireman', 3), ('superstitious', 3), ('graphic', 14), ('grip', 10), ('resolutions', 12), ('canvas', 3), ('suburbs', 1), ('miller', 20), ('bankrupt', 12), ('mattress', 8), ('segways', 1), ('collide', 5), ('indoors', 3), ('filter', 10), ('breakup', 13), ('snicker', 1), ('leaflet', 1), ('gorilla', 4), ('clone', 4), ('monkey', 6), ('applications', 4), ('clever', 8), ('salon', 5), ('diy', 6), ('pantry', 3), ('staple', 5), ('philadelphiatheatreco', 1), ('align', 4), ('cartoonist', 3), ('convey', 4), ('sack', 7), ('columbus', 4), ('opinionated', 1), ('karl', 5), ('unsustainable', 4), ('arpaio', 9), ('unpresidential', 1), ('boris', 2), ('yeltsin', 2), ('pg', 2), ('gingrich', 15), ('mouse', 12), ('roar', 1), ('canal', 4), ('bowery', 1), ('seoul', 2), ('incheon', 1), ('megan', 4), ('daydream', 1), ('naked', 34), ('altitude', 2), ('pier', 4), ('import', 6), ('vase', 4), ('invader', 1), ('russians', 11), ('coin', 6), ('liars', 7), ('welfare', 10), ('submit', 5), ('default', 6), ('laws', 26), ('firmly', 2), ('gunman', 17), ('solely', 5), ('visa', 9), ('rauner', 1), ('reda', 1), ('kateb', 1), ('hippocrates', 1), ('lois', 2), ('gibbs', 1), ('lypsinka', 2), ('trilogy', 3), ('ray', 21), ('mozart', 2), ('flute', 1), ('aplogize', 1), ('drivers', 15), ('nickelback', 2), ('frugal', 2), ('hubble', 3), ('telescope', 7), ('venus', 7), ('collins', 3), ('biotech', 2), ('farewell', 10), ('unidentified', 2), ('wooden', 9), ('lean', 9), ('garage', 11), ('hijab', 4), ('automatic', 5), ('cuban', 9), ('reposted', 1), ('dallas', 17), ('editorial', 10), ('roam', 3), ('infect', 2), ('starwarschristmascarols', 1), ('reparations', 3), ('pistachio', 2), ('biscotti', 1), ('kirsch', 1), ('cherries', 1), ('hamas', 9), ('impassioned', 3), ('expression', 5), ('sincerely', 2), ('hip', 14), ('influenza', 1), ('loose', 17), ('unconventional', 1), ('duty', 19), ('bryan', 8), ('generations', 14), ('renee', 1), ('roth', 6), ('jo', 2), ('silverstein', 1), ('honestly', 6), ('lineman', 1), ('dancer', 4), ('russiagate', 2), ('penelope', 1), ('duo', 5), ('middlemen', 1), ('aftermath', 9), ('skit', 3), ('predatory', 2), ('itt', 1), ('mat', 9), ('household', 8), ('greatly', 3), ('influencer', 3), ('suspenders', 1), ('unafraid', 3), ('quadriplegic', 1), ('corporations', 9), ('salary', 6), ('signature', 10), ('sympathy', 7), ('doughnuts', 5), ('unguarded', 1), ('clutch', 5), ('carroll', 2), ('swerve', 1), ('thermo', 1), ('iii', 10), ('pornographer', 1), ('decry', 6), ('wasteful', 4), ('spur', 4), ('leniency', 1), ('wrist', 4), ('injuries', 9), ('entrepreneur', 7), ('quinones', 1), ('beneficiary', 1), ('reese', 8), ('witherspoon', 6), ('flint', 13), ('higher', 27), ('substantive', 1), ('orient', 2), ('unhinge', 9), ('trainwreck', 3), ('accurate', 6), ('envy', 1), ('jot', 3), ('margin', 3), ('mockingbird', 3), ('limestone', 1), ('roxane', 1), ('divol', 1), ('svp', 1), ('gm', 8), ('symantec', 1), ('counter', 9), ('extralegal', 1), ('apparatus', 1), ('impoverish', 6), ('monte', 1), ('carlo', 1), ('racecar', 1), ('position', 26), ('peta', 4), ('revise', 8), ('chimpanzees', 4), ('aniston', 10), ('ethiopia', 2), ('subpoena', 4), ('executives', 14), ('knowingly', 2), ('succinct', 1), ('chronology', 1), ('relatives', 6), ('steam', 9), ('barb', 2), ('seller', 1), ('sheldon', 5), ('adelson', 4), ('setlist', 1), ('flawless', 2), ('seeker', 2), ('microwave', 9), ('slit', 4), ('crust', 5), ('townshend', 1), ('surfer', 8), ('oahu', 1), ('shore', 5), ('cope', 5), ('periods', 4), ('barry', 5), ('jenkins', 4), ('trifecta', 1), ('lamontagne', 1), ('vinyl', 2), ('path', 19), ('formal', 7), ('natives', 2), ('dustin', 9), ('hoffman', 5), ('unavoidable', 1), ('higgins', 3), ('lauren', 6), ('bushnell', 1), ('bachelor', 16), ('buzzwords', 1), ('foil', 7), ('mikhail', 1), ('gorbachev', 1), ('breaths', 1), ('tyka', 1), ('nelson', 12), ('tribute', 25), ('errors', 3), ('chile', 1), ('nicer', 3), ('claus', 5), ('eve', 17), ('evil', 12), ('alphabet', 3), ('scooby', 2), ('scrappy', 1), ('pendulum', 1), ('weeknd', 4), ('explicit', 2), ('fifty', 6), ('shade', 14), ('feminists', 6), ('blissful', 1), ('ignorance', 3), ('commemorate', 7), ('nate', 10), ('berkus', 1), ('jeremiah', 1), ('brent', 2), ('alcoholism', 6), ('cubans', 2), ('engage', 16), ('styx', 2), ('leverage', 3), ('none', 10), ('talkative', 2), ('gala', 15), ('newsbrief', 2), ('haiku', 2), ('iv', 3), ('firearms', 5), ('breakdown', 6), ('easiest', 4), ('cheapest', 2), ('beast', 4), ('proposal', 17), ('bloomberg', 9), ('watergate', 6), ('nickname', 10), ('scapegoats', 2), ('guess', 19), ('moan', 2), ('mic', 9), ('mumford', 2), ('vest', 5), ('jostens', 1), ('schoolers', 7), ('ronda', 4), ('rousey', 4), ('racetrack', 2), ('successes', 2), ('dismal', 2), ('bewilder', 1), ('sanderses', 1), ('commuter', 2), ('executioner', 3), ('decapitations', 1), ('upper', 6), ('broadly', 1), ('convert', 7), ('wednesday', 18), ('cusp', 1), ('giveaway', 1), ('invert', 1), ('supercuts', 3), ('hairstyles', 2), ('preserve', 13), ('ace', 1), ('bio', 5), ('pause', 7), ('truman', 4), ('capote', 1), ('chevron', 2), ('initiative', 12), ('drill', 17), ('platforms', 1), ('screwball', 1), ('nabors', 1), ('goof', 4), ('javelin', 1), ('tooth', 7), ('runoff', 1), ('resources', 7), ('imagination', 4), ('houthi', 1), ('interrogator', 2), ('profusely', 1), ('touchy', 1), ('subject', 10), ('fondly', 6), ('airliner', 3), ('iphones', 3), ('secure', 11), ('bonus', 7), ('crown', 13), ('execution', 16), ('loft', 5), ('discuss', 36), ('estrange', 1), ('blasio', 7), ('ads', 16), ('stine', 3), ('goosebumps', 3), ('adieu', 1), ('devastate', 13), ('bechdel', 1), ('ape', 8), ('heel', 5), ('catholic', 30), ('perjury', 4), ('susan', 8), ('diana', 7), ('breakout', 2), ('superhero', 10), ('consideration', 4), ('liu', 1), ('xiaobo', 1), ('bother', 14), ('neuter', 2), ('loser', 19), ('alt', 7), ('chrissy', 22), ('teigen', 21), ('reenact', 4), ('phan', 1), ('bestie', 1), ('inspector', 3), ('banister', 1), ('asymmetrical', 1), ('buck', 14), ('heroic', 13), ('freeway', 3), ('merry', 4), ('paraphernalia', 2), ('tribe', 5), ('cannibals', 1), ('sober', 13), ('breakroom', 4), ('dispute', 10), ('dsm', 2), ('accommodate', 6), ('bakers', 1), ('berkeley', 7), ('campus', 28), ('lockdown', 2), ('bench', 8), ('literary', 6), ('theorists', 1), ('farm', 29), ('dive', 12), ('osprey', 2), ('snowboard', 3), ('burden', 9), ('parental', 6), ('expectation', 2), ('nutritionists', 6), ('versions', 4), ('nummier', 1), ('flamethrower', 2), ('appropriate', 3), ('be', 15), ('sharon', 5), ('neurotransmitters', 1), ('cease', 8), ('agreement', 13), ('beekeepers', 1), ('swarm', 8), ('wrath', 2), ('grad', 5), ('yield', 7), ('products', 14), ('demons', 1), ('tragic', 11), ('nitty', 1), ('gritty', 2), ('depiction', 4), ('root', 15), ('cottonelle', 2), ('cinco', 1), ('anticipate', 6), ('catastrophic', 2), ('assassins', 2), ('dismember', 7), ('stifle', 1), ('dissent', 5), ('unsold', 1), ('units', 4), ('warden', 4), ('typical', 4), ('countries', 24), ('sistine', 3), ('chapel', 4), ('pop', 45), ('maryland', 12), ('sweep', 19), ('primates', 1), ('choice', 33), ('amos', 2), ('letterman', 3), ('depose', 2), ('reinforce', 4), ('mckinley', 1), ('interpol', 1), ('mona', 3), ('lisa', 10), ('regular', 16), ('mood', 15), ('oh', 19), ('yeah', 3), ('yolk', 1), ('drip', 5), ('grapefruit', 1), ('stonewall', 2), ('lebanese', 1), ('calais', 1), ('jungle', 7), ('permit', 5), ('heroin', 20), ('addict', 14), ('sisters', 9), ('voldemort', 1), ('unspeakably', 1), ('zoologist', 1), ('tranquilize', 1), ('dis', 1), ('disability', 7), ('sexiest', 7), ('intrigue', 4), ('satellite', 12), ('dixie', 4), ('chicks', 2), ('jubilee', 1), ('borrowers', 2), ('subprime', 1), ('austin', 11), ('theaters', 7), ('poker', 4), ('cassini', 2), ('petrify', 3), ('administrator', 5), ('emanate', 2), ('thursday', 18), ('himalayan', 1), ('everest', 8), ('disrupt', 5), ('height', 5), ('stylish', 7), ('petsmart', 3), ('inexperience', 1), ('appointees', 1), ('captain', 16), ('unfortunately', 5), ('reconnect', 2), ('partially', 3), ('fade', 7), ('undermine', 6), ('younger', 20), ('swing', 11), ('cremate', 2), ('walmart', 10), ('layover', 2), ('shantytown', 1), ('gate', 30), ('bottle', 23), ('radius', 2), ('recliner', 3), ('den', 3), ('wheelbarrow', 2), ('michelangelo', 4), ('arcane', 1), ('agencies', 4), ('imperil', 1), ('handwrite', 3), ('cursive', 1), ('controller', 3), ('detective', 14), ('jack', 26), ('twitterverse', 2), ('arya', 2), ('stark', 6), ('intern', 16), ('constitute', 4), ('angelique', 1), ('kerber', 1), ('serena', 11), ('heartfelt', 8), ('bigot', 5), ('industrial', 6), ('storyline', 4), ('demote', 2), ('invisible', 7), ('backpedal', 1), ('eldest', 1), ('brownstone', 1), ('richest', 3), ('bosnian', 1), ('daze', 4), ('ronco', 1), ('exposer', 1), ('humiliation', 3), ('mockumentary', 1), ('please', 41), ('lawrence', 14), ('conjoin', 3), ('hog', 6), ('midwestern', 2), ('tornado', 7), ('largest', 26), ('foes', 2), ('backers', 2), ('rattle', 4), ('baton', 7), ('obtain', 6), ('gitmo', 3), ('memo', 12), ('tabletop', 2), ('counties', 1), ('especially', 7), ('jussie', 2), ('smollett', 3), ('arsenio', 2), ('angelina', 6), ('unbroken', 2), ('angolan', 1), ('excedrin', 1), ('condom', 6), ('semi', 2), ('lax', 4), ('aunt', 18), ('issa', 7), ('rae', 9), ('unapologetic', 2), ('disorder', 20), ('painless', 1), ('veal', 5), ('brunch', 5), ('liven', 1), ('jazz', 12), ('trio', 2), ('roomba', 5), ('shudder', 5), ('grimace', 2), ('charley', 1), ('research', 29), ('fry', 21), ('detect', 2), ('license', 11), ('deem', 14), ('acceptable', 5), ('traditional', 14), ('murderous', 1), ('dictators', 1), ('lawmakers', 22), ('attendants', 1), ('chaplain', 4), ('malia', 5), ('seven', 10), ('nine', 8), ('importance', 17), ('pap', 1), ('hpv', 5), ('eventually', 5), ('lewandowski', 3), ('reignite', 1), ('birther', 4), ('monologues', 1), ('frantic', 5), ('tablet', 1), ('instagram', 31), ('effective', 16), ('placebo', 3), ('selves', 11), ('mccartney', 4), ('yoko', 3), ('ono', 3), ('inhale', 1), ('retrievers', 1), ('chrome', 2), ('extension', 5), ('shooters', 6), ('chair', 41), ('premium', 3), ('comment', 53), ('neutrality', 12), ('complaints', 7), ('malley', 7), ('veteran', 30), ('chokehold', 2), ('binary', 3), ('supple', 2), ('honolulu', 3), ('masterclass', 1), ('soothe', 7), ('eucalyptus', 1), ('flare', 3), ('sager', 2), ('facetime', 1), ('fellow', 11), ('bindi', 1), ('irwin', 2), ('prompt', 9), ('symbol', 5), ('arrogant', 4), ('jonah', 2), ('atlantic', 7), ('guzman', 1), ('narrowly', 10), ('kung', 3), ('fu', 2), ('legions', 1), ('petition', 10), ('unions', 9), ('tentative', 1), ('integrity', 6), ('dolby', 3), ('theatre', 5), ('rafter', 1), ('lever', 4), ('deconstruct', 3), ('stigma', 4), ('currency', 6), ('stoplights', 1), ('soviet', 1), ('insufferable', 5), ('saturday', 20), ('spooktacular', 1), ('montage', 3), ('mosel', 1), ('riesling', 1), ('divine', 3), ('shout', 19), ('humor', 11), ('flop', 7), ('powell', 5), ('warhead', 1), ('chelsea', 11), ('independent', 15), ('pundits', 3), ('unbalance', 3), ('birdman', 2), ('astonish', 2), ('sleepers', 1), ('workplaces', 2), ('session', 8), ('slovakia', 1), ('fico', 2), ('subtle', 4), ('medications', 3), ('reopen', 12), ('canyons', 1), ('hazardous', 1), ('visitors', 10), ('amandla', 1), ('stenberg', 1), ('tote', 1), ('somewhere', 14), ('gobi', 1), ('desert', 6), ('unlike', 2), ('agnostic', 1), ('sneeze', 1), ('automatically', 4), ('sexist', 23), ('debatable', 1), ('morley', 1), ('stopwatch', 1), ('lewd', 1), ('pranksters', 2), ('murderer', 6), ('reintegration', 1), ('incapable', 3), ('supervision', 1), ('ap', 5), ('discovery', 13), ('occupy', 4), ('newsweek', 4), ('staffers', 21), ('suddenly', 34), ('husky', 3), ('howl', 2), ('doggone', 1), ('duet', 2), ('effectively', 3), ('core', 7), ('botch', 12), ('assassination', 7), ('inhofe', 3), ('grand', 17), ('barbra', 5), ('streisand', 5), ('nasim', 1), ('nasr', 1), ('zaeefeh', 1), ('wretchedness', 1), ('shadi', 1), ('gagprojects', 1), ('adelaide', 1), ('berlin', 8), ('dubai', 5), ('mohawk', 1), ('hairstyle', 9), ('bo', 9), ('alike', 9), ('surf', 8), ('prevail', 4), ('unexpectedly', 4), ('riotous', 1), ('virgin', 11), ('pony', 6), ('anxiously', 5), ('attendant', 12), ('seafood', 2), ('nutella', 1), ('lubricant', 1), ('bethenny', 1), ('frankel', 1), ('nearby', 4), ('alice', 3), ('tupperware', 2), ('leftovers', 6), ('authority', 7), ('passover', 1), ('northern', 12), ('happier', 4), ('ellen', 19), ('hetero', 1), ('departments', 2), ('pakistani', 7), ('pang', 1), ('homophobia', 5), ('aspca', 2), ('sadder', 5), ('notebook', 4), ('creativity', 5), ('junot', 1), ('virulent', 2), ('misogyny', 3), ('assist', 6), ('hunch', 1), ('quarterback', 3), ('evan', 2), ('murray', 10), ('fatigue', 3), ('akin', 2), ('blemish', 1), ('spotless', 1), ('dismantle', 1), ('favor', 22), ('nathan', 5), ('bedford', 1), ('forrest', 2), ('ku', 1), ('klux', 1), ('klan', 1), ('out', 5), ('unbearably', 1), ('lakes', 3), ('connections', 5), ('cooperation', 1), ('policymaking', 2), ('mitt', 20), ('juicy', 5), ('sternly', 2), ('microphone', 3), ('september', 8), ('encore', 1), ('monarchy', 2), ('tactics', 4), ('shutdown', 27), ('hostage', 8), ('deficiencies', 1), ('fred', 6), ('durst', 4), ('limp', 2), ('bizkit', 1), ('stroll', 2), ('southerner', 2), ('volkswagen', 5), ('cruella', 2), ('bigots', 4), ('tuck', 7), ('loneliness', 4), ('insomnia', 4), ('forecast', 6), ('plug', 10), ('lightly', 3), ('sometimes', 12), ('staten', 4), ('asthma', 1), ('yo', 11), ('consent', 6), ('inflict', 2), ('moviegoers', 1), ('eighth', 7), ('tommy', 6), ('chong', 2), ('cannavale', 1), ('intergalactic', 3), ('spaceport', 1), ('mink', 1), ('irma', 12), ('barbados', 2), ('shell', 16), ('libyan', 6), ('hotshot', 4), ('peasant', 3), ('fyi', 2), ('hardcore', 2), ('drinkers', 4), ('ramsay', 2), ('helpful', 6), ('ne', 2), ('butt', 18), ('slimmer', 2), ('limbs', 3), ('zeke', 1), ('quiz', 11), ('chuckle', 4), ('knicks', 7), ('lamar', 15), ('untitled', 1), ('unmastered', 1), ('riz', 2), ('ahmed', 6), ('mindy', 2), ('kaling', 2), ('aziz', 9), ('ansari', 9), ('piggies', 2), ('degree', 9), ('videos', 13), ('springer', 1), ('frito', 6), ('zestitos', 1), ('fume', 3), ('maddow', 6), ('brainwash', 4), ('throwback', 4), ('contribute', 4), ('tissue', 7), ('cleanup', 1), ('jazzfest', 2), ('sting', 11), ('unrepentant', 1), ('chubby', 3), ('cherub', 4), ('potential', 24), ('yiannopoulos', 4), ('cpac', 4), ('classic', 26), ('avatar', 3), ('audiences', 4), ('getaway', 4), ('forage', 2), ('recommendations', 1), ('audiobook', 2), ('narrator', 3), ('cajun', 1), ('accent', 7), ('hicks', 8), ('tweeters', 5), ('overdrive', 2), ('cory', 10), ('booker', 10), ('paranoid', 4), ('burglar', 5), ('moana', 3), ('consecutive', 12), ('shrimp', 13), ('airlift', 3), ('avengers', 6), ('distrust', 2), ('hacker', 5), ('tilt', 4), ('whine', 3), ('gpa', 1), ('suggestions', 2), ('pompeo', 9), ('realism', 1), ('decorations', 4), ('drake', 16), ('vernon', 1), ('quixote', 1), ('beck', 2), ('violinist', 1), ('nique', 1), ('chickens', 5), ('qualms', 1), ('cage', 15), ('aryan', 4), ('notions', 2), ('sixth', 15), ('uninhibited', 1), ('fisherman', 7), ('nonessential', 3), ('disburse', 1), ('dossier', 2), ('podcaster', 1), ('solemn', 2), ('cereal', 7), ('pleasures', 3), ('schiff', 2), ('circumstantial', 1), ('conversion', 8), ('dozen', 4), ('activate', 3), ('phrase', 14), ('pig', 13), ('overpass', 1), ('bribery', 4), ('landmark', 7), ('colossal', 3), ('misinformation', 2), ('vax', 1), ('equinox', 1), ('fundamentals', 1), ('er', 8), ('reptile', 3), ('amazonian', 1), ('bulldozer', 1), ('tread', 2), ('brandish', 1), ('popeye', 3), ('mideast', 2), ('dese', 1), ('bombinks', 1), ('disgustipating', 1), ('sailor', 5), ('eu', 17), ('kingdom', 9), ('british', 20), ('vacate', 1), ('wisconsin', 20), ('pastoral', 1), ('immersive', 3), ('fertility', 4), ('motel', 5), ('flicker', 3), ('cruces', 1), ('conservatives', 24), ('impale', 4), ('fitness', 16), ('drain', 14), ('swamp', 4), ('dilute', 1), ('scientifically', 1), ('goldblum', 2), ('wolves', 5), ('challengers', 1), ('purport', 1), ('kaia', 1), ('crawford', 4), ('champ', 6), ('trick', 29), ('brawl', 3), ('wealthiest', 3), ('billionaires', 3), ('trillion', 10), ('nightmare', 15), ('undetectable', 1), ('transmit', 4), ('entrepreneurship', 5), ('doin', 1), ('costco', 3), ('relaxation', 3), ('tussle', 2), ('paddleboarder', 3), ('airplane', 12), ('mercy', 3), ('uninsured', 8), ('confrontation', 4), ('directors', 10), ('maasai', 1), ('mara', 5), ('bbc', 5), ('diary', 5), ('looseyia', 1), ('someplace', 3), ('sheryl', 5), ('unsuccessful', 3), ('farmworker', 1), ('cone', 1), ('reputation', 9), ('expedition', 2), ('sail', 3), ('warcraft', 2), ('leech', 1), ('asia', 8), ('caitlyn', 15), ('passersby', 3), ('batali', 1), ('ravioli', 3), ('unhrc', 1), ('reintroduce', 3), ('nudes', 4), ('yearlong', 1), ('predispose', 2), ('retaliation', 3), ('apatow', 4), ('muse', 3), ('odds', 5), ('mucus', 1), ('puddle', 4), ('bodily', 2), ('fluid', 2), ('contaminate', 3), ('ulcers', 1), ('predict', 15), ('opportunities', 3), ('unlimited', 4), ('obamas', 10), ('wrest', 2), ('portraiture', 1), ('trappings', 1), ('symphony', 4), ('orchestra', 2), ('simply', 8), ('mellencamp', 2), ('id', 9), ('pti', 1), ('budweiser', 4), ('lager', 1), ('tavern', 1), ('scotus', 4), ('londoners', 3), ('polite', 3), ('herman', 1), ('cain', 2), ('debbie', 6), ('allen', 16), ('frame', 11), ('translate', 5), ('chewbacca', 6), ('bald', 3), ('cornnuts', 1), ('vp', 12), ('stammer', 1), ('nutsarito', 1), ('chorus', 2), ('juke', 1), ('repeat', 26), ('monk', 2), ('mets', 2), ('earmark', 3), ('losers', 5), ('cannonball', 3), ('scope', 3), ('belly', 4), ('brendan', 2), ('fraser', 2), ('trivia', 3), ('seemingly', 6), ('spacecraft', 3), ('klepper', 2), ('myth', 10), ('horseconnect', 1), ('ionosphere', 1), ('infest', 2), ('sarandon', 1), ('postmaster', 3), ('julian', 6), ('assange', 8), ('tattletale', 1), ('inevitable', 5), ('illustrations', 4), ('mosul', 6), ('crises', 2), ('buyers', 4), ('mpaa', 1), ('testament', 3), ('oatmeal', 3), ('variety', 6), ('vegan', 6), ('necklace', 3), ('creation', 6), ('caffeine', 1), ('shin', 8), ('mummify', 2), ('entry', 11), ('courthouse', 2), ('ghostwriter', 1), ('liberties', 2), ('reiser', 2), ('pharmaceutical', 4), ('handful', 5), ('adjunct', 2), ('gloves', 3), ('nicolas', 2), ('sarkozy', 2), ('nationwide', 14), ('burkinis', 1), ('disneyland', 4), ('weak', 22), ('midwife', 1), ('franco', 4), ('skip', 19), ('gettin', 1), ('des', 2), ('moines', 1), ('perate', 1), ('tuition', 6), ('patricia', 3), ('arquette', 1), ('ernie', 1), ('hudson', 9), ('aykroyd', 2), ('reboot', 11), ('cc', 2), ('dixieland', 1), ('evict', 1), ('douglas', 5), ('kirk', 5), ('profound', 3), ('mindful', 5), ('quantity', 2), ('milosevic', 4), ('diagnose', 8), ('narcolepsy', 1), ('karate', 4), ('innovate', 1), ('sxsw', 9), ('caucasians', 1), ('nigel', 3), ('bangers', 1), ('mash', 3), ('hatch', 10), ('beget', 2), ('whitey', 5), ('bulger', 5), ('verdict', 5), ('balcony', 8), ('chimp', 3), ('synagogues', 1), ('congregants', 1), ('yom', 2), ('kippur', 2), ('kushner', 27), ('spermicide', 1), ('admire', 3), ('restart', 3), ('colorado', 23), ('fireworks', 9), ('permission', 10), ('cricket', 3), ('wearable', 3), ('superior', 1), ('radials', 1), ('breitbart', 7), ('grab', 14), ('outbreak', 19), ('thirsty', 2), ('dmc', 1), ('novelist', 5), ('tempurapedic', 1), ('crispy', 2), ('mattresses', 1), ('ethnic', 6), ('minorities', 5), ('haitians', 1), ('shrug', 5), ('ragnar', 2), ('au', 4), ('attain', 2), ('status', 18), ('removal', 5), ('veterans', 15), ('affairs', 5), ('sudanese', 2), ('youths', 5), ('whatsoever', 9), ('whiskey', 4), ('spontaneously', 3), ('televise', 5), ('ucla', 2), ('taskforce', 1), ('richie', 4), ('enterprising', 1), ('caird', 1), ('halfway', 11), ('refill', 1), ('cr', 3), ('br', 1), ('torch', 9), ('clown', 10), ('proficient', 1), ('incidents', 4), ('buffet', 5), ('laura', 13), ('tenison', 1), ('maman', 1), ('scandals', 5), ('foreclose', 3), ('schedule', 11), ('recur', 2), ('streamline', 1), ('timoth', 2), ('chalamet', 2), ('smolder', 1), ('woody', 10), ('banyan', 1), ('smoothie', 5), ('transgressions', 1), ('followers', 4), ('savory', 3), ('confidently', 3), ('squander', 5), ('rail', 4), ('behrendt', 1), ('gary', 10), ('cohn', 2), ('emmanuel', 2), ('amuse', 3), ('differences', 8), ('logo', 9), ('cartoon', 12), ('brush', 10), ('oral', 7), ('surgeon', 15), ('swiss', 8), ('dyson', 1), ('ambassador', 19), ('dryer', 3), ('guerilla', 2), ('sweden', 3), ('texts', 5), ('notify', 2), ('vestigial', 1), ('pity', 5), ('vegetables', 4), ('evolve', 12), ('evolutionary', 4), ('imperative', 3), ('sneak', 14), ('chest', 8), ('jolson', 1), ('chefs', 2), ('corruption', 16), ('psychology', 6), ('housefly', 3), ('virginity', 3), ('rot', 4), ('pile', 22), ('seahawks', 2), ('punt', 1), ('multi', 13), ('pronged', 1), ('swab', 3), ('seymour', 5), ('hersh', 2), ('reformers', 2), ('overlook', 7), ('newark', 1), ('merge', 8), ('instagrammer', 1), ('aca', 4), ('willams', 1), ('festive', 1), ('junior', 5), ('strategy', 27), ('tinder', 6), ('redemption', 9), ('expansion', 8), ('reddi', 2), ('wip', 2), ('canister', 2), ('unman', 3), ('cub', 12), ('bei', 2), ('conveyor', 3), ('lyndon', 2), ('constitutional', 6), ('contra', 2), ('barbara', 10), ('schooler', 4), ('impregnate', 3), ('weirdest', 4), ('sickly', 4), ('habsburg', 1), ('cousins', 5), ('miniature', 2), ('prevention', 5), ('empathy', 6), ('tucker', 7), ('carlson', 6), ('duca', 1), ('bomber', 14), ('sensitive', 7), ('humane', 5), ('sicker', 2), ('indigenous', 4), ('owls', 2), ('arse', 1), ('tiara', 1), ('workbench', 1), ('chargers', 3), ('nonstarter', 1), ('odd', 6), ('belief', 4), ('transit', 4), ('hamilton', 15), ('newt', 10), ('inaccuracy', 2), ('bootleg', 1), ('celebration', 8), ('destruction', 14), ('plea', 15), ('transphobia', 3), ('reserve', 9), ('philosopher', 1), ('kings', 4), ('juicero', 1), ('juicer', 1), ('shredyourex', 1), ('obsess', 16), ('dishware', 1), ('sweaters', 3), ('behold', 9), ('greenwald', 1), ('underwear', 13), ('multipacks', 1), ('bitcoin', 7), ('function', 8), ('concentration', 3), ('iffy', 1), ('cockroach', 4), ('milk', 22), ('superfood', 2), ('reprise', 3), ('entrepreneurial', 4), ('morale', 4), ('cafe', 4), ('headphones', 8), ('pigeon', 6), ('nonchalant', 2), ('bury', 12), ('ballistic', 5), ('defiance', 3), ('arrangement', 4), ('bang', 14), ('faulty', 1), ('dysfunction', 2), ('legalization', 7), ('parkway', 1), ('waukegan', 1), ('cafepress', 1), ('privacy', 12), ('improperly', 1), ('librarian', 1), ('amass', 2), ('humbly', 1), ('offshore', 5), ('stake', 9), ('randos', 1), ('hyundai', 3), ('philip', 10), ('morris', 9), ('cylindrical', 1), ('statistic', 3), ('techview', 1), ('linus', 1), ('torvalds', 1), ('inventor', 3), ('linux', 1), ('methadone', 2), ('clinic', 7), ('wherever', 2), ('gchat', 3), ('sidebar', 1), ('portal', 4), ('stability', 3), ('competence', 1), ('campbell', 5), ('noodle', 3), ('sanderson', 1), ('hardship', 3), ('bullet', 9), ('calle', 1), ('viacom', 2), ('lifestyle', 10), ('unbelievably', 4), ('unfamiliar', 2), ('acronym', 3), ('ashamed', 5), ('euthanizing', 2), ('legislators', 5), ('carson', 23), ('duration', 1), ('pivotal', 3), ('semitic', 4), ('reclusive', 2), ('billionaire', 15), ('bankroll', 2), ('altar', 5), ('spotlight', 12), ('navy', 16), ('seal', 12), ('headquarter', 24), ('sustainable', 9), ('cotton', 6), ('moderation', 2), ('modernity', 1), ('moroccan', 1), ('islam', 12), ('boycott', 12), ('nspw', 1), ('voicemail', 3), ('lawn', 18), ('legs', 7), ('breastfeed', 6), ('sclerosis', 1), ('impressions', 2), ('fewer', 9), ('vietnamese', 2), ('duke', 7), ('burgundy', 1), ('erotic', 4), ('pantone', 1), ('starstruck', 1), ('carrier', 6), ('server', 5), ('mainly', 3), ('throughout', 27), ('smatter', 1), ('applause', 4), ('stewman', 1), ('elevate', 3), ('quest', 9), ('phife', 1), ('dawg', 1), ('myths', 10), ('emotions', 5), ('elaine', 3), ('jung', 1), ('yorker', 8), ('unread', 3), ('bronx', 2), ('dismissal', 2), ('thunderstorm', 1), ('legoland', 1), ('brick', 6), ('offices', 6), ('liken', 4), ('ritter', 1), ('amtrak', 4), ('whirlwind', 1), ('yards', 2), ('weakling', 1), ('imaginary', 3), ('delarge', 1), ('droogs', 1), ('amidst', 1), ('incompetent', 7), ('crook', 4), ('tennis', 11), ('racket', 2), ('extremism', 1), ('twenty', 3), ('palatable', 2), ('improvement', 4), ('thwart', 8), ('partygoer', 4), ('subconscious', 5), ('commentator', 2), ('skiers', 1), ('revolve', 2), ('judith', 3), ('ageism', 2), ('saint', 6), ('peter', 28), ('apply', 15), ('accountability', 2), ('bolster', 3), ('wistful', 3), ('stumble', 11), ('illusion', 9), ('reward', 12), ('speechwriting', 1), ('detention', 8), ('entomologists', 1), ('retract', 2), ('clump', 1), ('priorities', 2), ('unrecognizable', 2), ('osteoporosis', 1), ('purse', 6), ('teary', 6), ('boggle', 3), ('mutant', 4), ('lice', 4), ('nited', 1), ('tes', 1), ('toughen', 1), ('umlauts', 1), ('narcissist', 3), ('howie', 2), ('express', 19), ('shack', 3), ('cleveland', 15), ('cavs', 2), ('sens', 1), ('expel', 6), ('oddsmakers', 1), ('raiders', 2), ('moody', 1), ('adapt', 4), ('furious', 15), ('pharrell', 4), ('demolish', 5), ('relaunches', 2), ('lovell', 1), ('portia', 1), ('munson', 2), ('empowerment', 2), ('frieze', 1), ('revlon', 2), ('functionless', 1), ('translucent', 1), ('confederacy', 1), ('archbishop', 5), ('columbia', 4), ('pitzer', 1), ('alleviate', 1), ('fuckup', 3), ('transplant', 7), ('bagel', 4), ('collaborate', 4), ('decease', 10), ('firemen', 2), ('dame', 11), ('judi', 1), ('dench', 1), ('lyric', 10), ('jupiter', 5), ('topple', 6), ('pint', 1), ('lemur', 2), ('dumbshit', 2), ('grisham', 3), ('surely', 3), ('hinky', 1), ('skylight', 2), ('fountain', 4), ('tons', 3), ('fragrance', 2), ('pattinson', 3), ('fka', 1), ('twig', 1), ('chateau', 2), ('marmont', 1), ('enhance', 6), ('wad', 5), ('anne', 14), ('hathaway', 6), ('eisenberg', 2), ('gag', 4), ('division', 5), ('sleekest', 1), ('catcall', 2), ('bathe', 1), ('pluto', 4), ('vast', 6), ('wasteland', 2), ('roller', 12), ('derby', 1), ('intellectual', 5), ('overboard', 1), ('liberty', 16), ('font', 6), ('gravestone', 3), ('lourea', 1), ('excerpt', 3), ('inaction', 3), ('dilemma', 5), ('ceasefire', 9), ('bale', 7), ('temple', 5), ('technique', 7), ('macrowave', 1), ('defrost', 2), ('roast', 14), ('grass', 4), ('carmelo', 2), ('jumpin', 2), ('ominous', 3), ('darkness', 7), ('descend', 10), ('webpage', 3), ('portend', 1), ('autoplaying', 2), ('brew', 4), ('evacuate', 15), ('koko', 1), ('dieselgate', 1), ('gunshots', 1), ('pullups', 1), ('lifetime', 27), ('oxfam', 1), ('epidemics', 1), ('benedict', 7), ('cumberbatch', 3), ('showbiz', 1), ('treasure', 8), ('compendium', 1), ('metallica', 5), ('zombie', 3), ('paradox', 2), ('tammys', 2), ('dogg', 3), ('turkeys', 2), ('overwhelm', 12), ('nigerian', 2), ('tanker', 4), ('norad', 1), ('femstat', 1), ('martini', 2), ('rossi', 1), ('spumanti', 1), ('fluidity', 1), ('kacy', 1), ('rapaport', 1), ('unload', 6), ('motherf', 2), ('ker', 2), ('kirstjen', 2), ('migrant', 13), ('deavere', 1), ('jefferson', 8), ('shannon', 2), ('vie', 3), ('replacement', 11), ('roadmap', 3), ('peshawar', 1), ('narrative', 8), ('albuquerque', 3), ('absent', 1), ('corn', 12), ('maze', 4), ('odyssey', 1), ('cleaner', 7), ('garment', 1), ('blindfold', 3), ('jos', 1), ('andr', 1), ('tempt', 1), ('mountaintop', 3), ('retreat', 9), ('maharishi', 1), ('greenspan', 9), ('rupee', 1), ('woodcut', 2), ('jersey', 18), ('morbidly', 6), ('pumpkin', 11), ('startle', 3), ('beware', 7), ('hubris', 5), ('mcmahon', 2), ('scientific', 13), ('scathing', 5), ('indictment', 2), ('filmmaking', 1), ('superficiality', 1), ('boomers', 9), ('revelers', 2), ('heartbeat', 2), ('buchanan', 1), ('bake', 8), ('kicker', 3), ('surgical', 2), ('swap', 2), ('va', 9), ('extraction', 2), ('otters', 2), ('stag', 6), ('nest', 8), ('decisions', 9), ('prom', 11), ('carrot', 3), ('retiree', 3), ('errands', 1), ('sudoku', 1), ('danza', 2), ('yemeni', 7), ('walkout', 5), ('lochte', 5), ('robbery', 7), ('rev', 4), ('mississippi', 15), ('harrow', 9), ('juror', 3), ('contusions', 1), ('kimmel', 26), ('althea', 1), ('gibson', 3), ('universal', 5), ('domination', 1), ('bunch', 26), ('marv', 1), ('stevens', 5), ('therapist', 16), ('iranians', 3), ('babylon', 1), ('frank', 14), ('gehry', 3), ('liquid', 2), ('architecture', 1), ('ripe', 3), ('avocado', 3), ('charlton', 3), ('heston', 4), ('fedex', 3), ('vaccines', 5), ('stormtroopers', 1), ('cowell', 1), ('lobbyists', 6), ('incumbency', 1), ('abandon', 31), ('maternal', 1), ('instincts', 2), ('kitten', 14), ('bipartisan', 7), ('apartheid', 3), ('locker', 8), ('contraception', 3), ('consult', 5), ('select', 11), ('choke', 12), ('samaritan', 1), ('francisco', 14), ('hateful', 7), ('unpredictable', 1), ('dirtydenier', 1), ('kline', 3), ('dolphins', 9), ('chatter', 3), ('tricky', 2), ('harass', 13), ('noaa', 1), ('incorrect', 2), ('bigoted', 4), ('plain', 8), ('resemblance', 3), ('uncanny', 2), ('misuse', 3), ('mediocre', 4), ('introspect', 1), ('assemble', 4), ('correct', 12), ('pointy', 1), ('antismoking', 1), ('chromat', 1), ('runway', 8), ('medicaid', 10), ('adele', 15), ('worship', 8), ('twos', 1), ('unknowingly', 2), ('condoms', 5), ('applicants', 3), ('precious', 8), ('cap', 16), ('carve', 5), ('instructors', 2), ('thieve', 5), ('valuable', 13), ('docents', 1), ('fuse', 2), ('interact', 2), ('behar', 2), ('disparage', 3), ('libertarians', 1), ('fuel', 25), ('mayoral', 2), ('lobbyist', 7), ('casino', 10), ('enzyme', 2), ('biochemical', 1), ('reaction', 17), ('pour', 19), ('syrup', 5), ('unwind', 4), ('stressful', 1), ('hermione', 4), ('granger', 1), ('abusive', 11), ('loch', 1), ('ness', 3), ('se', 2), ('terrors', 1), ('metallurgists', 1), ('polonium', 1), ('pushy', 1), ('hermit', 1), ('crab', 4), ('recovery', 15), ('enable', 7), ('haul', 7), ('nervous', 21), ('rewrite', 5), ('nepal', 5), ('pansexual', 1), ('moonwalks', 1), ('samuel', 1), ('adams', 4), ('pilsner', 1), ('ers', 2), ('ot', 1), ('ix', 3), ('administrators', 3), ('nasty', 10), ('vineyard', 2), ('disrepair', 2), ('turbans', 2), ('mosques', 3), ('replica', 3), ('articulate', 2), ('joaquin', 6), ('dj', 9), ('anxious', 9), ('buttercup', 1), ('informant', 5), ('picasso', 4), ('pubescent', 2), ('backdrop', 1), ('morocco', 3), ('latin', 8), ('sock', 8), ('turnaround', 2), ('mitty', 1), ('uncashed', 1), ('outlive', 4), ('physicists', 4), ('unstable', 3), ('quadriscuits', 1), ('beyhive', 2), ('rachael', 2), ('availability', 2), ('tearfully', 8), ('taxpayers', 4), ('meningitis', 2), ('brownback', 2), ('frosty', 2), ('wonderland', 4), ('doorknob', 1), ('mcenroe', 1), ('linda', 3), ('nea', 1), ('claes', 1), ('oldenburg', 1), ('perk', 2), ('enjoyable', 1), ('zinke', 5), ('drawer', 14), ('pajama', 3), ('turbulent', 2), ('transfer', 8), ('booth', 6), ('glitch', 4), ('anchor', 21), ('mistakenly', 7), ('broadcast', 10), ('languages', 4), ('developers', 2), ('osama', 5), ('distract', 9), ('emmy', 11), ('nominations', 13), ('forecaster', 1), ('parkland', 15), ('photograph', 13), ('absorb', 3), ('ironclad', 4), ('mila', 4), ('kunis', 4), ('inaugural', 6), ('route', 5), ('violate', 11), ('dylan', 6), ('digitally', 2), ('remastered', 1), ('compel', 4), ('shybot', 1), ('sticky', 2), ('handy', 1), ('knifepoint', 1), ('retell', 4), ('alvah', 1), ('roebuck', 1), ('subscription', 5), ('amaranth', 1), ('ricola', 2), ('embargo', 2), ('hick', 1), ('nobodies', 1), ('exposure', 8), ('deduce', 1), ('illustrate', 5), ('childish', 2), ('gambino', 2), ('subway', 34), ('guidance', 5), ('preface', 2), ('narcan', 1), ('biplanes', 1), ('fumigate', 2), ('ravage', 6), ('falter', 1), ('recital', 3), ('masterful', 1), ('nature', 15), ('philippine', 7), ('hitman', 2), ('duterte', 7), ('usable', 2), ('andme', 1), ('forensic', 3), ('crossroads', 3), ('transparency', 7), ('klugman', 1), ('tania', 1), ('bruguera', 1), ('thinnest', 1), ('ketogenic', 1), ('kool', 3), ('fineo', 1), ('websites', 3), ('advertisement', 3), ('shoplift', 4), ('harrelson', 3), ('leaf', 5), ('binder', 4), ('sh', 4), ('overshoot', 1), ('haitian', 2), ('nanny', 4), ('mega', 7), ('churchgoer', 4), ('devout', 1), ('jumbotron', 2), ('dumber', 3), ('quilt', 2), ('rash', 2), ('incitement', 2), ('csa', 1), ('seed', 11), ('gchats', 1), ('marcus', 1), ('mariota', 1), ('dre', 2), ('nonviolent', 3), ('warlord', 3), ('rd', 8), ('reverse', 11), ('crowdfund', 1), ('gineering', 1), ('crowdfunding', 4), ('speculation', 3), ('obstruct', 3), ('whisper', 14), ('wrap', 22), ('gloved', 1), ('catfishing', 1), ('uva', 2), ('debacle', 5), ('incidence', 1), ('accidents', 4), ('steel', 7), ('cholera', 2), ('smithsonian', 7), ('stargate', 1), ('sg', 1), ('dean', 9), ('loner', 3), ('envelope', 7), ('alicia', 3), ('machado', 1), ('tmz', 2), ('dayton', 2), ('bureau', 8), ('secondhand', 3), ('furniture', 4), ('polk', 1), ('lineup', 5), ('boeing', 4), ('spire', 1), ('soft', 7), ('inject', 7), ('ode', 4), ('contemplate', 7), ('rifle', 6), ('sympathize', 1), ('pettiness', 1), ('hail', 11), ('kasich', 14), ('arnold', 3), ('schwarzenegger', 5), ('apprentice', 3), ('catchphrase', 3), ('sweatshirt', 5), ('interference', 6), ('deception', 1), ('globe', 9), ('medallist', 1), ('violation', 1), ('loudest', 4), ('bel', 4), ('cryptic', 4), ('glamorous', 3), ('comprehensive', 5), ('duckling', 1), ('alternate', 6), ('colt', 1), ('wasserman', 3), ('schultz', 5), ('payday', 4), ('lenders', 3), ('pollution', 9), ('context', 6), ('psychological', 6), ('riff', 4), ('highs', 2), ('indicator', 3), ('tomorrow', 15), ('umpqua', 1), ('impressive', 11), ('honda', 4), ('frisbee', 2), ('misdirection', 1), ('subcommittee', 3), ('ramp', 6), ('lahren', 5), ('theblaze', 2), ('brook', 10), ('incivility', 1), ('plumb', 2), ('headfirst', 1), ('li', 3), ('solution', 15), ('woes', 7), ('enjoyment', 2), ('nawal', 1), ('motawi', 2), ('teleworks', 1), ('coulter', 7), ('reschedule', 3), ('uc', 3), ('meyer', 3), ('gregorios', 1), ('yohanna', 1), ('ibrahim', 1), ('boulos', 1), ('yazigi', 1), ('rage', 11), ('tribeca', 1), ('kesha', 4), ('cartels', 1), ('lockheed', 3), ('tactical', 2), ('missiles', 4), ('collector', 4), ('alison', 3), ('sweeney', 1), ('establish', 6), ('suggestion', 2), ('hotline', 8), ('sadiq', 2), ('lydia', 1), ('polgreen', 1), ('hagar', 1), ('cardinals', 4), ('consistent', 3), ('mlb', 10), ('bog', 1), ('woe', 2), ('eternity', 1), ('udpate', 1), ('cheadle', 1), ('slur', 11), ('affirmations', 2), ('backstreet', 4), ('sync', 4), ('inconvenience', 4), ('mild', 4), ('mannered', 3), ('marchers', 2), ('debts', 3), ('defraud', 3), ('identity', 17), ('kenyan', 3), ('bulldog', 2), ('mathis', 1), ('monica', 6), ('mancini', 1), ('anson', 1), ('rmh', 1), ('louisiana', 12), ('relocate', 3), ('roadblock', 1), ('rather', 19), ('hunk', 4), ('demitri', 1), ('allison', 2), ('anchorwoman', 1), ('ethnicity', 1), ('contemporary', 2), ('experimental', 5), ('theoretically', 1), ('hideo', 1), ('kojima', 1), ('consist', 4), ('cutscene', 1), ('speedboat', 1), ('warehouse', 9), ('selma', 3), ('blair', 4), ('outburst', 1), ('autobiography', 2), ('apparel', 1), ('jepsen', 3), ('redo', 2), ('steaks', 2), ('constituent', 3), ('outrageous', 4), ('cooker', 2), ('demonically', 1), ('antique', 2), ('wicker', 2), ('alito', 6), ('underdraft', 1), ('connecticut', 8), ('unarm', 13), ('highest', 10), ('floss', 2), ('neapolitan', 1), ('gutting', 2), ('fuckin', 4), ('handheld', 2), ('thermometer', 2), ('nut', 10), ('registration', 4), ('deadline', 7), ('reeva', 1), ('steenkamp', 1), ('unconscious', 4), ('directtv', 1), ('nsa', 12), ('flesh', 4), ('cloney', 1), ('noxious', 3), ('pheromone', 1), ('secretion', 1), ('marginalize', 2), ('introduction', 1), ('algebra', 2), ('publishers', 2), ('employ', 5), ('jj', 1), ('premature', 2), ('expensive', 15), ('rhino', 9), ('daniel', 13), ('ragsdale', 1), ('homan', 1), ('offenders', 3), ('deepwater', 1), ('horizon', 2), ('cicilline', 1), ('entitle', 5), ('helicopter', 11), ('feig', 3), ('polka', 1), ('harold', 3), ('loeffelmacher', 1), ('lately', 5), ('ronaldo', 2), ('abs', 5), ('nazis', 8), ('discard', 4), ('saliva', 2), ('handler', 4), ('nipples', 2), ('nachos', 1), ('atheists', 4), ('homosexuals', 2), ('fashionistas', 1), ('quirky', 2), ('firefox', 1), ('desktop', 5), ('discredit', 6), ('sociocultural', 1), ('norms', 4), ('willie', 4), ('entendre', 1), ('scrutiny', 4), ('stardew', 1), ('agribusiness', 2), ('elton', 3), ('tbfoodsllc', 1), ('fury', 4), ('philipps', 1), ('console', 6), ('heath', 3), ('ledger', 2), ('psychic', 8), ('psychics', 2), ('hopelessly', 2), ('krieger', 2), ('setbacks', 1), ('insecurities', 3), ('cabin', 8), ('dumptruck', 1), ('reilly', 16), ('slavery', 10), ('iftar', 2), ('cavalcade', 1), ('eleven', 6), ('shareholders', 2), ('busch', 2), ('preemie', 2), ('avocados', 4), ('salvadoran', 1), ('consciousness', 3), ('poem', 8), ('ocd', 4), ('affable', 2), ('semite', 1), ('flower', 11), ('moviegoer', 3), ('layoffs', 7), ('woodstock', 1), ('revenue', 5), ('projections', 3), ('laminate', 2), ('kingpins', 1), ('pantomime', 1), ('lasso', 2), ('motion', 12), ('hogan', 6), ('behalf', 6), ('dummy', 7), ('outsource', 2), ('donor', 5), ('hominid', 1), ('unambitious', 1), ('terrorists', 13), ('negro', 2), ('baldwin', 16), ('simpsons', 6), ('crossover', 3), ('myers', 1), ('yacht', 8), ('mule', 2), ('ing', 3), ('albums', 2), ('rogers', 4), ('gerrymander', 5), ('manic', 3), ('servicepeople', 1), ('backfire', 5), ('solid', 5), ('cubicle', 1), ('michelin', 3), ('recidivism', 1), ('needy', 3), ('hamill', 5), ('fright', 2), ('jellyfish', 2), ('nelly', 1), ('breezy', 1), ('edgar', 2), ('allan', 4), ('poe', 1), ('jog', 3), ('turmoil', 6), ('situations', 4), ('assume', 19), ('euthanized', 2), ('alert', 23), ('gamestop', 2), ('doom', 5), ('plate', 12), ('acne', 1), ('medication', 3), ('dizziness', 1), ('nausea', 1), ('clot', 2), ('difficulty', 6), ('sadly', 13), ('loews', 1), ('cinemas', 2), ('versace', 1), ('newborn', 19), ('infants', 5), ('velvet', 3), ('rope', 4), ('monopoly', 8), ('adrenaline', 3), ('ceremonies', 1), ('kristen', 11), ('dax', 1), ('shepard', 4), ('champagne', 4), ('beverage', 3), ('trainers', 2), ('bud', 4), ('phrasebook', 2), ('nuestra', 1), ('palabra', 1), ('knot', 2), ('untangle', 1), ('midas', 1), ('scowl', 1), ('venezuela', 12), ('maduro', 1), ('river', 16), ('methodist', 1), ('wamu', 1), ('chaplev', 1), ('transport', 4), ('globally', 2), ('mildfires', 1), ('amble', 1), ('blagojevich', 2), ('fitzgerald', 3), ('rossini', 1), ('caramoor', 1), ('ros', 1), ('dudes', 6), ('suitor', 2), ('justify', 12), ('obsession', 11), ('holtzclaw', 1), ('lopsided', 1), ('bronchitis', 1), ('sketch', 14), ('porta', 2), ('potties', 1), ('stinky', 1), ('taiwan', 4), ('jolie', 6), ('refute', 4), ('vanity', 3), ('portrayal', 2), ('alliances', 2), ('marriages', 4), ('ferrera', 6), ('dishonest', 2), ('zach', 1), ('braff', 1), ('milano', 1), ('flounder', 2), ('scholl', 3), ('remover', 1), ('unsliced', 1), ('particularly', 3), ('speakeasy', 1), ('embalm', 2), ('breast', 25), ('implant', 10), ('laboratory', 1), ('mice', 6), ('archivists', 2), ('unpublished', 3), ('crichton', 1), ('manuscript', 4), ('amusement', 4), ('operate', 11), ('hitch', 2), ('transparent', 3), ('kozlewski', 2), ('ralph', 2), ('northam', 1), ('huffington', 9), ('impersonator', 5), ('embody', 3), ('wizards', 2), ('auction', 6), ('chao', 2), ('metal', 7), ('pellets', 1), ('stricken', 2), ('firstborn', 1), ('trout', 3), ('tragically', 8), ('asexual', 2), ('apprehend', 1), ('urinator', 2), ('annihilate', 2), ('islamist', 5), ('radicals', 2), ('duller', 1), ('entirety', 8), ('tune', 9), ('lovingly', 4), ('snap', 14), ('cocktail', 7), ('sri', 1), ('srinivasan', 1), ('gavin', 4), ('rossdale', 1), ('tighter', 3), ('laugh', 28), ('politically', 5), ('angelic', 1), ('fentanyl', 4), ('panetta', 1), ('kabul', 5), ('intention', 2), ('harasser', 2), ('supervillain', 1), ('perez', 3), ('sherman', 1), ('alexie', 1), ('prehistoric', 3), ('athlete', 4), ('unfairly', 4), ('compatriots', 1), ('shortz', 1), ('locations', 8), ('technicality', 3), ('nina', 4), ('solomon', 2), ('awestruck', 1), ('describe', 22), ('playstation', 7), ('takeout', 7), ('shield', 9), ('quagmire', 1), ('peddle', 2), ('stimulus', 3), ('escalator', 1), ('flyers', 2), ('hockey', 7), ('loesch', 2), ('loyalties', 1), ('airtime', 1), ('elementary', 7), ('july', 14), ('disillusionment', 2), ('remarkable', 5), ('burma', 3), ('somebody', 3), ('emphasize', 4), ('elbow', 2), ('grease', 6), ('sleeve', 2), ('motorist', 7), ('shitfaced', 1), ('olean', 1), ('stoneheart', 1), ('greater', 11), ('antifa', 1), ('organizers', 4), ('monologue', 8), ('guatemalan', 3), ('picker', 2), ('oldies', 1), ('goodies', 1), ('erect', 6), ('triumphal', 1), ('arch', 3), ('muhammed', 1), ('rejection', 5), ('operations', 2), ('snarky', 3), ('ergonomic', 1), ('lumbar', 2), ('limbaugh', 4), ('brie', 3), ('larson', 2), ('intense', 7), ('workouts', 1), ('chide', 1), ('darrell', 2), ('alliance', 8), ('slovenia', 2), ('labute', 1), ('alec', 8), ('frances', 1), ('cobain', 1), ('prehab', 1), ('brightest', 3), ('upgrade', 8), ('heartbroken', 5), ('hiroshima', 3), ('optimists', 1), ('snuggle', 1), ('competitor', 2), ('ownership', 5), ('associate', 10), ('tougher', 2), ('el', 11), ('chapo', 4), ('privilege', 9), ('tide', 8), ('rumsfeld', 9), ('barrack', 1), ('sexting', 3), ('conversations', 11), ('evans', 1), ('katie', 8), ('holmes', 8), ('intake', 3), ('doj', 11), ('dru', 1), ('domino', 4), ('costner', 3), ('cluster', 3), ('riverdale', 2), ('lili', 2), ('reinhart', 1), ('insensitive', 1), ('tan', 7), ('exquisitely', 1), ('coif', 1), ('meow', 4), ('cranberry', 2), ('juice', 8), ('urinary', 1), ('tract', 3), ('infections', 3), ('wallace', 3), ('desist', 3), ('dealer', 6), ('escapee', 2), ('noel', 1), ('comrie', 2), ('adjust', 9), ('timeout', 3), ('skyscraper', 4), ('carnivorous', 2), ('insurers', 5), ('volley', 1), ('slick', 4), ('warriors', 3), ('niall', 1), ('horan', 1), ('ginuwine', 1), ('kosovo', 2), ('dot', 4), ('losses', 2), ('unsafe', 4), ('vindicate', 3), ('interfaith', 4), ('dialogue', 8), ('zika', 16), ('fraternity', 6), ('deodorant', 2), ('alternativefacts', 1), ('jade', 2), ('pettyjohn', 1), ('nickelodeon', 1), ('katee', 1), ('sackhoff', 1), ('kenneth', 3), ('hy', 1), ('genic', 1), ('apportionment', 1), ('gladness', 1), ('participation', 1), ('temporarily', 7), ('comfier', 2), ('aleppo', 9), ('evacuation', 1), ('wondersplint', 1), ('kondo', 1), ('untidy', 1), ('cupboard', 5), ('wearhouse', 1), ('trousers', 1), ('jumper', 3), ('regularly', 15), ('beautifully', 3), ('topher', 1), ('volume', 2), ('chang', 2), ('reynolds', 4), ('lively', 4), ('hyperbole', 1), ('capabilities', 4), ('kickline', 1), ('squeal', 2), ('slaughter', 7), ('jawa', 1), ('hedge', 5), ('restrictions', 11), ('rob', 19), ('sf', 1), ('tomm', 1), ('lasorda', 1), ('sensible', 2), ('meteor', 3), ('kidz', 1), ('bop', 1), ('nisota', 1), ('hijack', 4), ('piazza', 1), ('productions', 3), ('cavalleria', 1), ('rusticana', 1), ('pagliacci', 1), ('tumbleweed', 1), ('pubes', 1), ('desolate', 1), ('ob', 1), ('gyn', 1), ('premonition', 3), ('bp', 6), ('resume', 12), ('template', 1), ('grime', 4), ('reinvent', 7), ('platt', 1), ('competencies', 1), ('headband', 1), ('rodrigo', 2), ('peters', 3), ('ameringer', 1), ('mcenery', 1), ('yohe', 1), ('semester', 3), ('runner', 5), ('recede', 1), ('floodwaters', 2), ('extent', 2), ('rehires', 2), ('bandai', 1), ('kindergartener', 2), ('passionate', 3), ('incomprehensible', 1), ('ken', 13), ('gays', 8), ('infiltrate', 3), ('automakers', 1), ('biel', 2), ('heyday', 2), ('climbers', 3), ('avalanche', 5), ('propaganda', 3), ('cara', 2), ('mund', 1), ('unhealthy', 7), ('cancun', 1), ('keychain', 1), ('momentarily', 3), ('marsa', 1), ('resort', 14), ('heifer', 1), ('bbqs', 1), ('palestinians', 13), ('invasion', 7), ('miner', 1), ('fairies', 1), ('pup', 3), ('pad', 6), ('eva', 7), ('longoria', 4), ('viciously', 2), ('rabid', 3), ('flea', 1), ('vendor', 3), ('possibly', 9), ('unidentifiable', 1), ('conrad', 3), ('redhead', 1), ('tales', 7), ('fe', 3), ('unexplained', 4), ('blackouts', 2), ('brokeback', 1), ('braun', 1), ('printer', 4), ('dipshit', 3), ('protestors', 3), ('commute', 6), ('grisly', 5), ('jigglypuff', 1), ('morgue', 1), ('humanitarians', 1), ('ashton', 1), ('kutcher', 1), ('joanna', 1), ('silverman', 5), ('prima', 2), ('donna', 4), ('habitat', 5), ('skydivers', 1), ('slip', 11), ('mayors', 2), ('idly', 3), ('diplomatic', 6), ('depart', 7), ('prohibit', 2), ('servers', 2), ('thom', 2), ('yorke', 2), ('output', 1), ('coldplay', 3), ('rashida', 1), ('homage', 4), ('rewind', 1), ('cathedral', 2), ('texters', 1), ('notifications', 3), ('dawson', 2), ('backtrack', 1), ('statements', 10), ('whoever', 3), ('boo', 11), ('analysts', 4), ('numeric', 1), ('integers', 1), ('nestl', 1), ('aroldis', 1), ('chapman', 3), ('dodgers', 3), ('imelda', 1), ('rapist', 7), ('politicians', 19), ('pathway', 2), ('standardize', 2), ('curriculum', 2), ('spar', 5), ('antic', 2), ('thousand', 4), ('electronics', 2), ('protector', 2), ('megachurch', 2), ('ultrachurch', 1), ('steph', 1), ('boxer', 6), ('orcas', 2), ('captors', 1), ('verbatim', 2), ('greenwood', 2), ('filmstrip', 2), ('iggy', 4), ('azalea', 3), ('assad', 15), ('homos', 1), ('minnie', 4), ('optioned', 1), ('presidents', 10), ('hallow', 1), ('pervert', 11), ('flatly', 2), ('derange', 3), ('gerbil', 4), ('roadtrip', 1), ('shall', 2), ('paddleboard', 2), ('acid', 4), ('nugent', 2), ('petco', 2), ('gerbils', 2), ('cherish', 3), ('ulta', 1), ('buttery', 1), ('goodness', 2), ('stagger', 5), ('viking', 2), ('nonprofits', 2), ('huma', 2), ('subsequent', 2), ('hungover', 6), ('emma', 12), ('watson', 3), ('levine', 5), ('maroon', 5), ('toenail', 4), ('purdue', 4), ('pharma', 6), ('poppy', 2), ('strengthen', 4), ('hobbies', 5), ('proctor', 1), ('signifier', 1), ('kamikaze', 1), ('swimmers', 2), ('funnel', 6), ('dissident', 3), ('choir', 3), ('tryout', 1), ('handel', 1), ('maine', 9), ('bhp', 1), ('revolution', 17), ('unhealthily', 1), ('repress', 3), ('emotion', 3), ('suggestive', 2), ('mac', 10), ('colonoscopy', 1), ('fantastic', 7), ('voyage', 3), ('ruler', 3), ('laundry', 6), ('washer', 3), ('blonde', 3), ('misunderstand', 2), ('necromancer', 1), ('pirate', 7), ('splice', 1), ('mainbrace', 1), ('belgium', 4), ('mishap', 6), ('weapon', 10), ('alienate', 2), ('afterlife', 2), ('topics', 3), ('wipe', 11), ('bulk', 2), ('graffiti', 9), ('dinners', 2), ('parole', 4), ('psyches', 1), ('selection', 9), ('scribble', 1), ('painkiller', 1), ('emojis', 4), ('charity', 23), ('vendors', 1), ('rag', 8), ('raspberries', 1), ('berrilicious', 1), ('recognition', 4), ('puppet', 1), ('leftist', 3), ('watchlist', 1), ('reset', 1), ('cling', 6), ('daddy', 14), ('saigon', 1), ('divisions', 1), ('prematurely', 2), ('sponsorship', 1), ('vat', 2), ('strategists', 1), ('flotus', 1), ('heckler', 3), ('prop', 7), ('trunk', 5), ('reflections', 5), ('raven', 2), ('steelers', 1), ('playoff', 5), ('grudge', 2), ('diabetes', 6), ('athens', 2), ('prestigious', 2), ('shopper', 7), ('grinch', 2), ('incidences', 1), ('heavenly', 5), ('bliss', 2), ('opioids', 1), ('antonio', 4), ('lament', 4), ('cte', 2), ('prior', 2), ('cnbc', 3), ('cheesecake', 4), ('porno', 3), ('jerk', 9), ('tits', 4), ('boise', 2), ('morrison', 5), ('knudsen', 1), ('underestimate', 2), ('willingness', 1), ('imf', 2), ('lagarde', 1), ('payout', 1), ('electorate', 2), ('fishermen', 3), ('carolinas', 3), ('wyclef', 2), ('jean', 7), ('fugees', 2), ('defensive', 3), ('ingraham', 6), ('supremacists', 6), ('tractor', 4), ('tractors', 1), ('advance', 17), ('blac', 2), ('chyna', 1), ('solitary', 5), ('confinement', 3), ('racehorse', 1), ('meredith', 1), ('vieira', 1), ('chronic', 5), ('youlookdisgusting', 1), ('blogger', 6), ('haters', 8), ('perfection', 2), ('unpaid', 4), ('tag', 5), ('armor', 6), ('yesterday', 4), ('mayonnaise', 3), ('nexplanon', 1), ('intricate', 4), ('po', 3), ('responsibilities', 4), ('registry', 13), ('spinach', 1), ('desirable', 2), ('commish', 1), ('copps', 1), ('taillight', 1), ('doorstep', 6), ('gatlinburg', 1), ('weisser', 1), ('brewery', 1), ('frigid', 1), ('shrivel', 3), ('temperatures', 6), ('masturbators', 2), ('kamala', 4), ('harris', 9), ('dentists', 1), ('penalty', 8), ('zappa', 1), ('regulate', 4), ('whammys', 1), ('daredevil', 4), ('kaleidoscopic', 1), ('transformation', 4), ('unbeleafably', 1), ('lovers', 8), ('flake', 4), ('birthers', 1), ('illustrators', 1), ('depict', 7), ('economics', 4), ('appointment', 6), ('youthful', 2), ('indiscretion', 1), ('barber', 7), ('phelps', 6), ('mandela', 8), ('gre', 1), ('creationism', 1), ('folder', 1), ('vine', 3), ('quicksand', 1), ('companion', 2), ('trauma', 5), ('topeka', 1), ('llc', 1), ('gmail', 1), ('hotmail', 1), ('roles', 4), ('hospitalize', 3), ('often', 9), ('hardest', 2), ('wheelers', 1), ('napaquake', 1), ('napastrong', 1), ('powerfully', 2), ('denounce', 6), ('prejudice', 9), ('waterboarding', 3), ('iconic', 18), ('archie', 2), ('jughead', 1), ('zack', 1), ('calories', 6), ('leftover', 4), ('hors', 1), ('oeuvres', 1), ('sasha', 7), ('sever', 5), ('problematic', 4), ('westminster', 4), ('mollie', 1), ('spilman', 1), ('criteo', 1), ('knit', 4), ('libations', 1), ('blush', 1), ('flatter', 6), ('predate', 1), ('laverne', 4), ('shirley', 1), ('ornament', 2), ('relegate', 2), ('meddle', 3), ('vandals', 2), ('heartedly', 3), ('din', 10), ('diocese', 1), ('laypeople', 1), ('cupid', 2), ('roses', 1), ('ikea', 4), ('yankees', 1), ('affiliate', 2), ('unfortunate', 2), ('coincidence', 1), ('gigi', 3), ('hadid', 2), ('merkley', 1), ('flatbread', 1), ('nickel', 2), ('forceful', 1), ('aggression', 3), ('flatirons', 1), ('rosswood', 1), ('computers', 3), ('festivals', 3), ('lunchbox', 2), ('whitby', 1), ('ascent', 3), ('educator', 4), ('harambe', 2), ('miami', 16), ('spoilers', 7), ('bicyclists', 1), ('helmets', 2), ('submarine', 4), ('shipyard', 1), ('protectors', 1), ('rendition', 3), ('ave', 2), ('maria', 8), ('degrasse', 3), ('luna', 4), ('overalls', 1), ('usual', 5), ('landers', 1), ('catapult', 2), ('curtain', 11), ('fluctuate', 1), ('mince', 1), ('psychopath', 3), ('guidelines', 2), ('officially', 21), ('yazidi', 2), ('restaurants', 9), ('christopher', 11), ('embed', 4), ('mathison', 1), ('disturb', 14), ('nonverbal', 3), ('buffoonery', 1), ('texan', 1), ('emotionally', 8), ('seasonal', 6), ('lamp', 3), ('waaah', 2), ('raw', 4), ('metabolism', 1), ('endorsement', 15), ('southeastern', 1), ('scarlett', 3), ('johansson', 3), ('scour', 1), ('tombs', 1), ('hotlines', 1), ('drool', 2), ('starz', 1), ('outlander', 2), ('tartan', 2), ('bumper', 2), ('intoxicate', 1), ('truther', 3), ('jihadist', 2), ('emerald', 1), ('roland', 3), ('contamination', 2), ('gravel', 1), ('messam', 1), ('peso', 1), ('sitcom', 9), ('slot', 6), ('optical', 3), ('maoist', 2), ('preschool', 6), ('dogfight', 2), ('brandy', 3), ('norwood', 1), ('zinnias', 1), ('identities', 4), ('outlaw', 5), ('procedures', 2), ('charitable', 5), ('maneuver', 2), ('joystick', 1), ('procrastination', 1), ('preciousness', 1), ('colombia', 6), ('oprah', 4), ('roker', 4), ('crestfallen', 3), ('torso', 2), ('providence', 1), ('cianci', 1), ('sawfish', 1), ('uproariously', 1), ('hussein', 6), ('speedy', 2), ('controllable', 1), ('unicorn', 7), ('frappuccino', 3), ('libido', 3), ('pulverize', 1), ('oreos', 4), ('sats', 1), ('seacrest', 4), ('acres', 7), ('pristine', 2), ('maci', 1), ('bookout', 1), ('gmo', 2), ('mosquitos', 1), ('venue', 1), ('resolve', 10), ('nab', 6), ('pun', 3), ('shorter', 5), ('sharknado', 1), ('jazeera', 6), ('adjourn', 1), ('pierce', 5), ('brosnan', 1), ('algerian', 3), ('geico', 1), ('mayer', 5), ('beckon', 2), ('judy', 2), ('lap', 2), ('lancelot', 1), ('silk', 2), ('submerge', 1), ('bicker', 2), ('tehran', 2), ('demonstrations', 2), ('langston', 1), ('hughes', 2), ('harlem', 3), ('excel', 2), ('courtney', 1), ('korean', 24), ('manicurist', 1), ('suarez', 2), ('socialize', 1), ('araa', 1), ('kayboard', 1), ('bustad', 1), ('surrogates', 2), ('zapp', 1), ('bounce', 9), ('ounce', 6), ('ratio', 4), ('otto', 4), ('warmbier', 4), ('rockstar', 1), ('imprison', 4), ('programmers', 1), ('accessories', 4), ('nyfw', 2), ('afghans', 2), ('pursuit', 3), ('charleston', 11), ('mcdermott', 1), ('boiglerized', 1), ('louise', 1), ('playwright', 1), ('tokyo', 4), ('outage', 5), ('warp', 4), ('commuters', 5), ('chemicals', 3), ('waltz', 3), ('biologist', 3), ('playgrounds', 1), ('kirkman', 2), ('scenic', 3), ('rout', 2), ('poetry', 6), ('genetically', 5), ('modify', 5), ('salmon', 6), ('handsome', 2), ('atomic', 3), ('weaponry', 1), ('mannequins', 2), ('wack', 1), ('statute', 1), ('blog', 9), ('bennet', 1), ('skeptical', 3), ('youngest', 3), ('afterbirthers', 1), ('restrict', 5), ('balmain', 1), ('anecdote', 6), ('alias', 2), ('sylvester', 2), ('stallone', 2), ('bonafide', 1), ('decorate', 4), ('unconditional', 3), ('hollister', 1), ('ricans', 5), ('crazies', 1), ('reid', 12), ('baja', 1), ('villa', 2), ('palmar', 1), ('loreto', 1), ('picky', 2), ('eater', 2), ('ivy', 6), ('halls', 3), ('await', 8), ('spineless', 1), ('banado', 1), ('norte', 1), ('slum', 2), ('briskly', 1), ('wag', 7), ('whatsapp', 6), ('classroom', 7), ('braille', 1), ('valentines', 3), ('fever', 4), ('wal', 6), ('mart', 8), ('greeter', 2), ('ricky', 3), ('menudo', 1), ('mullets', 1), ('plumber', 1), ('til', 2), ('lupita', 3), ('nyong', 3), ('alongside', 3), ('joshua', 1), ('beal', 1), ('absurd', 1), ('bachelorette', 11), ('plato', 1), ('republic', 9), ('fireplace', 2), ('cornell', 1), ('lash', 7), ('acknowledge', 10), ('rowdy', 5), ('sharp', 6), ('deficit', 9), ('ridley', 4), ('smokers', 1), ('aloud', 2), ('checklist', 4), ('spiritual', 8), ('punny', 1), ('vet', 11), ('panther', 9), ('disgrace', 2), ('detroit', 21), ('stomp', 2), ('twang', 1), ('voyager', 4), ('rowling', 9), ('whop', 3), ('cometh', 2), ('wapo', 1), ('rezaian', 1), ('nunberg', 2), ('meltdown', 3), ('cox', 4), ('cisgender', 1), ('dern', 2), ('girthy', 1), ('explosives', 3), ('turtle', 11), ('batteries', 3), ('detector', 6), ('spookiest', 1), ('ftc', 2), ('downplay', 10), ('devry', 1), ('mishandle', 6), ('complaint', 6), ('solidarity', 9), ('hurriedly', 1), ('enrich', 3), ('uranium', 3), ('inspection', 3), ('aclu', 9), ('wahlberg', 4), ('americas', 3), ('presume', 2), ('metoo', 9), ('manageable', 2), ('fraction', 1), ('bloodline', 2), ('flick', 3), ('westworld', 4), ('costars', 2), ('harmony', 3), ('jauregui', 1), ('laundromat', 3), ('coordinator', 1), ('barge', 2), ('robins', 1), ('bouillerie', 1), ('angela', 9), ('honorable', 2), ('repletion', 1), ('hippo', 4), ('prosecutors', 7), ('billcosby', 1), ('eerie', 5), ('ration', 1), ('iraqi', 19), ('mindset', 1), ('strife', 3), ('idaho', 3), ('legislature', 7), ('unremarkable', 1), ('resemble', 2), ('burt', 1), ('towards', 12), ('starks', 1), ('reunion', 16), ('hebdo', 3), ('symbolic', 3), ('righteous', 1), ('dietary', 2), ('galactic', 4), ('makeover', 12), ('idf', 1), ('dagestan', 1), ('jostle', 1), ('radioactive', 1), ('sloth', 1), ('whiz', 1), ('adulting', 1), ('sticker', 2), ('ventilator', 1), ('pretentious', 2), ('behead', 10), ('predominantly', 2), ('emirates', 1), ('maiden', 3), ('valid', 1), ('gadgets', 1), ('desensitize', 2), ('cramp', 2), ('hunky', 3), ('inconsiderate', 3), ('jackass', 2), ('clinics', 4), ('retroactively', 1), ('settler', 1), ('segel', 1), ('rooney', 2), ('wacky', 6), ('wonderful', 8), ('memorabilia', 2), ('miscast', 1), ('setback', 4), ('chore', 1), ('eradicate', 3), ('supporter', 14), ('thug', 1), ('proximity', 3), ('tracy', 4), ('lilith', 1), ('aircraft', 3), ('glue', 4), ('comedians', 7), ('baylor', 3), ('cameraman', 4), ('altercation', 1), ('deforestation', 3), ('incite', 4), ('jurors', 1), ('freddie', 6), ('prinze', 2), ('monumental', 2), ('postmodern', 1), ('architect', 5), ('isolate', 7), ('poke', 6), ('arbitration', 1), ('merriam', 2), ('webster', 3), ('dictionary', 2), ('dell', 2), ('gateway', 1), ('merger', 11), ('invasive', 5), ('franchise', 4), ('evaluate', 3), ('kahneman', 1), ('dishonor', 2), ('gottfried', 1), ('fatten', 2), ('gig', 5), ('inventors', 1), ('cornyn', 1), ('innovestion', 1), ('rackspace', 1), ('coup', 6), ('genes', 1), ('emancipate', 3), ('stronghold', 2), ('hostages', 4), ('chen', 1), ('redeem', 2), ('skate', 4), ('investigators', 4), ('notre', 10), ('ron', 14), ('tosh', 1), ('lucid', 2), ('unstoppable', 3), ('lapd', 4), ('bandit', 1), ('gunpoint', 3), ('overcome', 15), ('isbell', 1), ('nashville', 6), ('concussion', 2), ('hulu', 4), ('mohawked', 2), ('niro', 3), ('idle', 3), ('cab', 3), ('maker', 9), ('pamela', 5), ('wright', 4), ('kidnappers', 1), ('desks', 3), ('repentence', 1), ('stronger', 4), ('reindeer', 1), ('significantly', 1), ('floyd', 2), ('mayweather', 3), ('manny', 1), ('pacquiao', 2), ('westbrook', 2), ('defender', 2), ('beater', 1), ('coax', 2), ('instructions', 7), ('retrieve', 2), ('scholars', 4), ('teller', 6), ('bronco', 1), ('workforce', 2), ('pregame', 2), ('foolishly', 2), ('permanent', 4), ('florence', 5), ('maim', 2), ('bullsh', 2), ('lackluster', 1), ('stache', 1), ('abuser', 4), ('yodel', 1), ('bandolier', 2), ('chunk', 3), ('morally', 3), ('candid', 5), ('diane', 2), ('sawyer', 1), ('frisk', 4), ('oops', 2), ('nien', 1), ('nunb', 1), ('binge', 10), ('casanova', 1), ('merit', 2), ('memorials', 1), ('alternatives', 2), ('posters', 4), ('historically', 3), ('significant', 4), ('planets', 3), ('submissions', 3), ('foreman', 4), ('weld', 3), ('dispel', 3), ('philanderer', 2), ('diners', 7), ('payer', 2), ('pickup', 6), ('yak', 2), ('dignity', 7), ('alexia', 1), ('kosmider', 1), ('transjourney', 1), ('mill', 11), ('arnoth', 1), ('bert', 1), ('berns', 1), ('contention', 2), ('skydiver', 1), ('luke', 8), ('aikins', 1), ('stanley', 4), ('herpetologist', 2), ('fetal', 4), ('wive', 6), ('neurotic', 3), ('procedure', 10), ('bombard', 1), ('smut', 1), ('filthiest', 1), ('meaningful', 4), ('explosive', 6), ('liberalization', 1), ('radicalism', 1), ('avid', 4), ('dragonriders', 1), ('pern', 1), ('riddle', 3), ('narrow', 7), ('blowjob', 1), ('ca', 1), ('crater', 2), ('meteorite', 3), ('revolvers', 1), ('reluctant', 2), ('enlargement', 1), ('oratory', 1), ('lineups', 1), ('fugitive', 2), ('heroine', 2), ('tantrum', 4), ('rosa', 1), ('costa', 2), ('demise', 5), ('kemp', 2), ('investigator', 7), ('ned', 1), ('flanders', 1), ('investigative', 1), ('announcement', 16), ('torrent', 4), ('antebellum', 2), ('tami', 1), ('blank', 7), ('votive', 1), ('candle', 7), ('librarians', 1), ('bookish', 1), ('unsung', 3), ('advisers', 6), ('jew', 4), ('plaque', 3), ('victorious', 5), ('genre', 2), ('yamaha', 1), ('alto', 1), ('saxophones', 1), ('snowmobile', 3), ('generators', 1), ('scooters', 1), ('cart', 4), ('gypsy', 1), ('consequence', 4), ('pelvic', 1), ('span', 3), ('wreckage', 3), ('tufts', 1), ('nutrition', 1), ('berry', 7), ('comptroller', 2), ('abu', 4), ('dhabi', 3), ('aditya', 1), ('vikram', 1), ('sengupta', 1), ('labour', 3), ('refrain', 1), ('smartest', 1), ('negotiation', 1), ('bruise', 2), ('kickboxing', 2), ('tournament', 9), ('bangkok', 1), ('cruelty', 6), ('terry', 6), ('mcauliffe', 1), ('knobs', 1), ('stallion', 2), ('lamb', 1), ('ecclesiastic', 1), ('enroll', 3), ('vandalize', 6), ('apparent', 4), ('hardcover', 2), ('headache', 1), ('ashley', 8), ('madison', 4), ('brave', 6), ('nutter', 2), ('supportive', 2), ('operatives', 4), ('overpopulation', 2), ('conservationists', 2), ('legionnaires', 2), ('sicken', 4), ('plaza', 3), ('poolside', 1), ('vacuum', 4), ('hotbed', 1), ('fogle', 2), ('beatify', 1), ('sainthood', 4), ('teenager', 7), ('octavia', 3), ('spencer', 5), ('artistic', 3), ('endeavor', 1), ('culminate', 1), ('coma', 4), ('wes', 2), ('deadpan', 1), ('meticulous', 1), ('wicked', 2), ('wanderlust', 1), ('gypsies', 2), ('bae', 1), ('fleek', 2), ('designation', 2), ('hundred', 4), ('wilmore', 2), ('egyptians', 2), ('madea', 1), ('sluggish', 1), ('chimps', 1), ('exert', 1), ('boz', 1), ('ongoing', 7), ('prosecute', 6), ('fullest', 1), ('lew', 2), ('villanova', 1), ('piccolo', 1), ('coaster', 8), ('grudgingly', 3), ('godparent', 1), ('romp', 3), ('princeton', 7), ('woodrow', 1), ('explosion', 14), ('jerky', 3), ('choices', 8), ('siege', 4), ('mrs', 6), ('butterworth', 2), ('feminine', 4), ('mystique', 1), ('twelve', 1), ('carlos', 4), ('santana', 3), ('gregg', 3), ('rolie', 1), ('neal', 2), ('schon', 1), ('toby', 3), ('keith', 7), ('sony', 9), ('depend', 2), ('talented', 4), ('eerily', 2), ('wealth', 8), ('wealthy', 10), ('engine', 7), ('brazilians', 3), ('overpower', 1), ('ungodly', 1), ('cashless', 1), ('casually', 13), ('creep', 12), ('goop', 1), ('strudel', 1), ('guardians', 5), ('masterfully', 1), ('erections', 4), ('gambia', 1), ('atrocities', 2), ('ketchup', 8), ('fancy', 4), ('shakespeare', 3), ('antibiotics', 4), ('waterston', 1), ('carefully', 11), ('blacklight', 3), ('topless', 3), ('barbarian', 1), ('delusional', 5), ('unsubscribe', 1), ('purritos', 1), ('burritos', 2), ('favre', 1), ('lookalike', 3), ('christianity', 5), ('assimilate', 1), ('civilian', 4), ('corset', 2), ('chita', 2), ('rivera', 3), ('fussy', 1), ('libertarian', 7), ('silvio', 3), ('berlusconi', 3), ('apocalyptic', 2), ('icantbreathe', 1), ('infuriate', 6), ('scam', 11), ('redheads', 2), ('anachronism', 1), ('militia', 5), ('goliath', 2), ('rbg', 3), ('idiots', 7), ('commissioner', 4), ('procreative', 1), ('keegan', 2), ('merle', 1), ('bumbler', 1), ('unblemished', 1), ('tasty', 2), ('militant', 1), ('libya', 10), ('stab', 16), ('wriggle', 1), ('billboard', 12), ('oddly', 3), ('foxwoods', 1), ('louder', 4), ('scoop', 2), ('animatronic', 4), ('seize', 13), ('packets', 1), ('nonbinding', 1), ('wwi', 3), ('liturgy', 1), ('atone', 1), ('willem', 1), ('dafoe', 1), ('village', 12), ('dragons', 2), ('puberty', 3), ('bronze', 5), ('backflip', 1), ('methodically', 2), ('captor', 2), ('dragon', 2), ('denial', 2), ('asians', 7), ('underworld', 2), ('incubus', 1), ('immortality', 2), ('baucus', 1), ('jovi', 2), ('jealous', 8), ('bassem', 1), ('youssef', 1), ('systemic', 2), ('partisan', 3), ('trophies', 1), ('cower', 4), ('specialists', 1), ('commander', 5), ('nam', 2), ('nerve', 6), ('rouge', 6), ('mediocrity', 1), ('captivity', 7), ('realities', 2), ('brides', 1), ('chinatown', 1), ('parlor', 4), ('unsolicited', 4), ('postpartum', 4), ('mumble', 2), ('presenter', 1), ('marilu', 1), ('henner', 1), ('talent', 9), ('busker', 1), ('gudmunsen', 1), ('scotsman', 1), ('tentatively', 2), ('galaxies', 1), ('polygraph', 1), ('chagas', 1), ('enrol', 3), ('falsely', 1), ('ross', 10), ('cairo', 2), ('centennial', 1), ('holler', 1), ('astrid', 1), ('menks', 1), ('petals', 2), ('evenhanded', 1), ('ashcroft', 4), ('winnie', 1), ('pooh', 3), ('bleed', 12), ('mineral', 2), ('shackle', 4), ('razor', 5), ('blades', 1), ('grumpy', 2), ('esophageal', 1), ('cupp', 1), ('walkable', 1), ('peek', 3), ('gazebo', 2), ('underutilized', 1), ('le', 5), ('marathoner', 2), ('genome', 2), ('genomic', 1), ('technonlogy', 1), ('blackout', 3), ('collie', 2), ('bffs', 2), ('disembody', 3), ('elevator', 8), ('jose', 6), ('desperately', 14), ('cloth', 1), ('napkin', 5), ('warmth', 3), ('pawn', 4), ('hapless', 1), ('urchin', 1), ('pickpocket', 1), ('discourage', 4), ('mantras', 1), ('uncharted', 1), ('straley', 1), ('storytelling', 2), ('aimlessly', 1), ('xx', 1), ('unprepared', 2), ('rivalry', 3), ('downside', 2), ('lizzo', 1), ('mandolins', 1), ('aqsa', 1), ('kalamazoo', 1), ('bunk', 1), ('holland', 1), ('gallows', 2), ('hearted', 5), ('austria', 4), ('dory', 3), ('cantaloupe', 3), ('minutiae', 1), ('infographic', 2), ('satan', 8), ('castro', 9), ('identical', 2), ('straw', 5), ('fishin', 1), ('gigantic', 1), ('kuwait', 3), ('midst', 4), ('meander', 1), ('absentminded', 1), ('swimmer', 4), ('convoy', 2), ('pursue', 12), ('authentic', 2), ('renounce', 3), ('papacy', 1), ('divorcee', 1), ('rodriguez', 7), ('durbin', 2), ('scalper', 1), ('accuser', 9), ('sammy', 1), ('achilles', 2), ('harden', 5), ('viruses', 2), ('chimpanzee', 2), ('titans', 3), ('cookies', 8), ('geeky', 1), ('zucker', 2), ('brazile', 2), ('sacred', 3), ('excercise', 1), ('embroidery', 1), ('ruth', 7), ('bader', 6), ('ginsburg', 6), ('vacancy', 1), ('mudbound', 1), ('studios', 5), ('deadspin', 1), ('breathtakingly', 1), ('rice', 15), ('scariest', 1), ('timberwolves', 1), ('staywokeandvote', 1), ('doubtful', 1), ('blaster', 2), ('confidential', 2), ('historian', 4), ('ashanti', 1), ('intimate', 8), ('cbs', 14), ('placement', 5), ('alma', 2), ('mater', 2), ('constituents', 7), ('mph', 6), ('invincible', 2), ('chairman', 8), ('newspapers', 5), ('gridlock', 2), ('bankers', 1), ('encryption', 1), ('thief', 4), ('sob', 7), ('hootie', 1), ('blowfish', 1), ('pussies', 2), ('antibiotic', 3), ('superbugs', 1), ('guant', 4), ('namo', 4), ('detainee', 2), ('lehrer', 3), ('neuroscience', 1), ('falsify', 5), ('stockholm', 5), ('ymca', 2), ('plenty', 6), ('ivf', 2), ('embryos', 1), ('edward', 3), ('murrow', 1), ('dirtbag', 1), ('carbs', 1), ('yosemite', 7), ('lodge', 5), ('accommodations', 2), ('eons', 1), ('stephanie', 4), ('teuwen', 2), ('urinals', 1), ('piers', 2), ('paternity', 4), ('knight', 9), ('overhunting', 1), ('mayan', 4), ('headdress', 1), ('fraudsters', 1), ('biological', 4), ('lipped', 2), ('honey', 7), ('peanuts', 6), ('clancy', 3), ('traditions', 1), ('friendships', 2), ('symptom', 4), ('rhyme', 3), ('clavin', 1), ('hokey', 1), ('pokey', 2), ('silo', 3), ('snowy', 2), ('withstand', 4), ('coalition', 4), ('digitization', 1), ('impotently', 1), ('realm', 3), ('impassable', 1), ('waist', 6), ('nintendo', 4), ('unused', 4), ('orozco', 1), ('gymnastics', 5), ('ram', 2), ('nationalists', 3), ('mit', 9), ('boar', 4), ('popcorn', 5), ('cleopatra', 2), ('entourage', 3), ('aka', 2), ('reggie', 1), ('atheletes', 1), ('allergy', 3), ('wharton', 2), ('tuskegee', 2), ('airmen', 1), ('reimpose', 1), ('chekhovian', 1), ('americorps', 1), ('rig', 6), ('carabiner', 1), ('rappel', 1), ('iger', 2), ('mascot', 3), ('prostitution', 2), ('jebbush', 1), ('supersized', 1), ('tff', 1), ('orzabal', 1), ('lloyd', 5), ('lang', 2), ('merrick', 7), ('ninetysomethings', 1), ('photoshops', 1), ('wistfully', 5), ('postsecret', 1), ('unsightly', 2), ('raisin', 3), ('prostate', 1), ('lieutenant', 2), ('delta', 10), ('discount', 5), ('wynn', 3), ('hastily', 7), ('questionable', 2), ('motives', 1), ('aveage', 1), ('neill', 1), ('blomkamp', 1), ('hectic', 2), ('conor', 3), ('mcgregor', 3), ('stamina', 2), ('lawsuits', 4), ('enviros', 2), ('abscond', 1), ('sensational', 1), ('beatboxers', 1), ('jargon', 2), ('bingo', 1), ('prizeless', 1), ('feast', 6), ('bavarian', 1), ('ewan', 1), ('nevada', 10), ('cue', 5), ('garfield', 2), ('crony', 1), ('capitalism', 4), ('birthright', 1), ('collude', 3), ('bauer', 2), ('californian', 1), ('homeowners', 2), ('yard', 9), ('demented', 1), ('capsule', 4), ('seaweed', 1), ('infinitely', 4), ('nourish', 1), ('seas', 2), ('fulfil', 5), ('hollow', 7), ('stossel', 1), ('vergara', 3), ('cock', 4), ('thalia', 1), ('cassuto', 1), ('moran', 2), ('weirded', 4), ('gory', 2), ('rebirth', 2), ('dearbetsy', 1), ('implore', 3), ('fidel', 4), ('scrabble', 5), ('conquer', 2), ('trials', 2), ('candidly', 1), ('ner', 1), ('herbe', 1), ('monet', 1), ('catty', 1), ('cylinders', 1), ('outright', 1), ('glory', 6), ('salmonella', 4), ('cuddle', 2), ('masterpiece', 5), ('unicef', 1), ('magnetic', 1), ('migration', 3), ('acosta', 5), ('gotham', 4), ('vitter', 2), ('quell', 2), ('puget', 1), ('grief', 13), ('diagnosis', 8), ('henderson', 3), ('carol', 8), ('fatwa', 1), ('rushdie', 1), ('derivative', 1), ('oz', 5), ('rarely', 2), ('outdoor', 4), ('discreetly', 2), ('dildo', 5), ('perspectives', 2), ('deputize', 2), ('repulse', 2), ('scooter', 5), ('libby', 1), ('johnsville', 1), ('reclaim', 8), ('lifeline', 1), ('erlich', 1), ('sully', 3), ('sullenberger', 1), ('autopilot', 2), ('invitation', 8), ('trickle', 1), ('weirdos', 2), ('glance', 1), ('regrettable', 1), ('solidify', 1), ('malcolm', 6), ('detectives', 3), ('ama', 2), ('economists', 5), ('refrigerator', 7), ('blend', 3), ('cabinets', 3), ('crocodile', 5), ('ache', 4), ('continuous', 5), ('posture', 3), ('selfless', 3), ('ducklings', 3), ('professionals', 4), ('dispensary', 1), ('manchester', 4), ('preachers', 3), ('wavy', 1), ('divest', 3), ('fossil', 7), ('phoenician', 1), ('tyre', 1), ('buff', 6), ('redistribution', 1), ('conyers', 1), ('verbally', 1), ('dredge', 2), ('ridiculous', 11), ('uglification', 1), ('woooo', 1), ('podesta', 1), ('ufo', 4), ('changer', 5), ('colorize', 2), ('chaplains', 2), ('counselors', 2), ('pastors', 2), ('jonathan', 7), ('adler', 2), ('graphics', 3), ('guinea', 5), ('pronounce', 6), ('southwest', 5), ('culmination', 2), ('guam', 2), ('conglomerate', 1), ('selflessly', 1), ('traits', 1), ('icons', 3), ('compensate', 2), ('whippoorwill', 1), ('coastline', 1), ('mommy', 6), ('indian', 21), ('ageist', 1), ('loot', 3), ('aha', 1), ('steakhouse', 3), ('newest', 13), ('contentment', 2), ('ruby', 6), ('delight', 14), ('waddle', 1), ('ptsd', 4), ('lonesome', 1), ('brunette', 2), ('bleach', 2), ('guarantee', 5), ('slack', 1), ('mature', 4), ('rhode', 2), ('patriotic', 3), ('congratulate', 5), ('blunder', 1), ('suede', 1), ('burr', 1), ('cloak', 5), ('lorne', 1), ('michaels', 2), ('melty', 1), ('lexicon', 1), ('detach', 3), ('spaceships', 1), ('tutor', 4), ('rerun', 3), ('blu', 1), ('breakers', 2), ('twilight', 2), ('horribly', 5), ('dwarf', 1), ('demean', 1), ('corpses', 3), ('blvd', 1), ('axel', 1), ('stuntman', 1), ('lid', 3), ('oust', 4), ('bloodstream', 1), ('tamblyn', 2), ('poems', 1), ('actresses', 2), ('populist', 2), ('davos', 1), ('dorner', 3), ('microbrewer', 1), ('finephilia', 1), ('saghian', 1), ('stan', 5), ('denuclearization', 2), ('herculean', 2), ('astronomical', 1), ('burial', 4), ('crimea', 3), ('primaries', 7), ('limb', 5), ('stagehand', 1), ('euthanize', 3), ('hatchimals', 3), ('warmest', 1), ('webmd', 1), ('passion', 5), ('faux', 1), ('pas', 2), ('maintain', 12), ('jill', 12), ('abramson', 3), ('rocky', 9), ('psalm', 1), ('inquiry', 6), ('offenses', 1), ('bakery', 4), ('loaves', 1), ('northeast', 3), ('mvps', 2), ('sword', 4), ('censorship', 3), ('conferences', 2), ('stepmom', 3), ('guillermo', 3), ('toro', 4), ('monsters', 6), ('gargoyles', 1), ('dolezal', 2), ('starve', 14), ('arc', 1), ('inclusive', 3), ('pablo', 1), ('escobar', 1), ('hitter', 2), ('hyperrealistic', 1), ('overpay', 1), ('dreamcatcher', 1), ('rearview', 1), ('alejandro', 1), ('nieto', 1), ('neuroses', 1), ('wringer', 1), ('munchkin', 1), ('provence', 1), ('pont', 1), ('du', 2), ('gard', 1), ('lotion', 1), ('grovel', 2), ('concur', 1), ('rainforest', 7), ('hooters', 1), ('busboy', 2), ('teleport', 1), ('indulge', 3), ('foolish', 1), ('memorable', 5), ('onscreen', 1), ('knuckle', 2), ('misplace', 3), ('medicare', 7), ('cigna', 1), ('nosebleed', 2), ('juices', 2), ('nitroglycerin', 1), ('chex', 1), ('gingerly', 2), ('muffin', 1), ('slop', 1), ('loudspeakers', 1), ('asheville', 1), ('equity', 5), ('inclusion', 7), ('mahmoud', 3), ('ahmadinejad', 6), ('personally', 6), ('takei', 5), ('sopranos', 3), ('redford', 3), ('howdy', 1), ('odessa', 2), ('showdown', 6), ('ichabod', 1), ('tnt', 2), ('headless', 1), ('horseman', 2), ('rider', 6), ('casamigos', 1), ('ibiza', 2), ('robotrix', 1), ('scheme', 7), ('workday', 5), ('doris', 2), ('norton', 1), ('kindred', 2), ('length', 3), ('derek', 5), ('jeter', 3), ('flawlessly', 1), ('hustle', 2), ('broadwell', 1), ('notebooks', 1), ('incentive', 1), ('degeneres', 3), ('subsidiary', 2), ('kraft', 1), ('osteoarthritis', 1), ('nudity', 3), ('virtues', 1), ('hospitality', 1), ('goldie', 1), ('hawn', 1), ('nightingale', 1), ('vid', 1), ('onstage', 4), ('kinda', 4), ('miff', 1), ('earbud', 2), ('detangling', 1), ('medalist', 2), ('flintstones', 1), ('wheat', 6), ('thin', 10), ('horde', 4), ('petulant', 1), ('hi', 3), ('veggie', 1), ('eaters', 1), ('dina', 2), ('manzo', 1), ('blunt', 4), ('skittish', 2), ('broom', 1), ('housewife', 1), ('marni', 1), ('umass', 1), ('dartmouth', 2), ('freeload', 1), ('cells', 1), ('monkfish', 2), ('hindus', 3), ('vegans', 2), ('satanists', 1), ('impose', 7), ('infrequent', 1), ('pornography', 5), ('kobe', 5), ('bryant', 4), ('hiker', 2), ('dome', 4), ('thornton', 2), ('scuffle', 1), ('rubiobot', 1), ('showcases', 1), ('glorify', 2), ('disagree', 4), ('regulations', 8), ('terrence', 2), ('gooding', 1), ('bolivian', 1), ('collaborative', 2), ('asimo', 1), ('stairs', 3), ('anybody', 2), ('hilton', 6), ('excellent', 7), ('caretaker', 2), ('kodak', 2), ('embark', 4), ('rowboat', 2), ('carcasses', 1), ('patronize', 2), ('rhetoric', 9), ('middleton', 7), ('civilizations', 1), ('cultural', 7), ('gems', 1), ('reminders', 6), ('catfight', 1), ('heche', 1), ('sandra', 6), ('protagonists', 1), ('libyans', 1), ('qaddafi', 4), ('kathie', 2), ('gifford', 2), ('bouncer', 5), ('walsh', 2), ('ching', 1), ('chongs', 1), ('madonna', 9), ('implosion', 1), ('enemies', 3), ('algeria', 2), ('tate', 4), ('tat', 1), ('innocents', 1), ('preferences', 1), ('hen', 2), ('ethic', 1), ('vitamin', 4), ('lampoon', 1), ('cathartic', 1), ('ayman', 2), ('zawahiri', 1), ('tedtalk', 1), ('phat', 1), ('jncos', 1), ('composite', 2), ('vehicles', 3), ('ambulances', 1), ('gunshot', 2), ('betrayer', 1), ('desperation', 1), ('haiti', 6), ('decorative', 4), ('pillow', 6), ('positively', 3), ('plump', 1), ('random', 15), ('schieffer', 2), ('pry', 3), ('tray', 4), ('lovely', 7), ('noncompete', 1), ('clause', 2), ('lease', 3), ('dominoes', 1), ('marble', 3), ('pulley', 1), ('propel', 2), ('rollers', 1), ('slope', 8), ('attach', 10), ('kiddie', 2), ('nudge', 2), ('broomstick', 1), ('axis', 3), ('tumble', 5), ('mallet', 1), ('ribbon', 3), ('battery', 3), ('incline', 4), ('salt', 8), ('shaker', 1), ('helplessly', 3), ('variants', 1), ('multiply', 1), ('breakneck', 1), ('mclaughlin', 2), ('alumni', 5), ('improvements', 1), ('swarthmore', 1), ('bestselling', 1), ('pamphlet', 2), ('betty', 1), ('friedan', 1), ('postage', 2), ('hood', 9), ('trait', 1), ('management', 10), ('munchstrosity', 1), ('layboratory', 1), ('archangels', 1), ('cardinal', 4), ('connor', 2), ('mud', 3), ('dapl', 1), ('eritrean', 1), ('taxi', 6), ('communion', 3), ('wafer', 3), ('bianchi', 1), ('geniuses', 2), ('nd', 5), ('dawn', 8), ('societal', 1), ('avert', 5), ('honk', 5), ('everywhere', 18), ('twiztid', 1), ('shine', 2), ('suppression', 2), ('mlk', 5), ('agendas', 1), ('odom', 5), ('nh', 1), ('rearrange', 3), ('whim', 2), ('exotic', 2), ('strobe', 1), ('bedtime', 6), ('bloodshot', 1), ('belatedly', 1), ('zinger', 1), ('ecuadorian', 1), ('vacant', 2), ('mastermind', 3), ('xabraxian', 1), ('madaya', 1), ('sieges', 1), ('goon', 1), ('squads', 1), ('basics', 2), ('prefrontal', 1), ('cortex', 2), ('impulsive', 2), ('cm', 1), ('punk', 7), ('ufc', 2), ('pansies', 1), ('acclimate', 1), ('jaden', 1), ('ten', 13), ('treetop', 1), ('buckingham', 5), ('palace', 6), ('porch', 5), ('nicholas', 1), ('statues', 5), ('slippery', 6), ('heap', 2), ('apex', 2), ('scroll', 5), ('sorta', 2), ('autoerotic', 2), ('asphyxiation', 2), ('overtime', 5), ('sideline', 3), ('whiff', 1), ('lunge', 1), ('toad', 2), ('speakers', 6), ('males', 5), ('imminent', 2), ('ostracize', 4), ('aerosmith', 3), ('nemo', 2), ('emoji', 6), ('nes', 1), ('explainthe', 1), ('resurface', 3), ('philharmonic', 2), ('operation', 6), ('exhume', 2), ('subsidy', 2), ('limo', 2), ('sushi', 3), ('kitkats', 1), ('prius', 1), ('rudimentary', 1), ('careen', 3), ('gape', 2), ('sagan', 1), ('superstition', 1), ('ferris', 2), ('lucas', 6), ('ingredient', 5), ('dwyane', 1), ('unscientific', 1), ('unethical', 1), ('inhumane', 3), ('dribble', 3), ('dictate', 2), ('pamplona', 1), ('retard', 2), ('faggot', 4), ('schilling', 2), ('trumpcare', 8), ('chronicle', 2), ('ireporters', 1), ('fad', 3), ('flavorful', 1), ('mountainside', 1), ('fickle', 1), ('hostile', 6), ('purists', 1), ('gesture', 6), ('punishable', 1), ('vein', 3), ('tbilisi', 1), ('danes', 4), ('dancy', 1), ('outdo', 1), ('taxpayer', 4), ('lampshade', 1), ('defendant', 4), ('doable', 1), ('bicep', 1), ('regimen', 2), ('romantic', 8), ('colony', 5), ('neurologists', 1), ('astrazeneca', 1), ('assort', 1), ('sampler', 1), ('midriff', 1), ('glade', 2), ('meadow', 1), ('extinguisher', 3), ('droop', 1), ('spokesbeast', 1), ('routines', 3), ('painstaking', 1), ('critique', 4), ('superdelegate', 3), ('feng', 1), ('shui', 1), ('unauthorized', 3), ('floridian', 1), ('sharia', 2), ('erika', 3), ('christensen', 2), ('masculinity', 4), ('muscle', 6), ('therapies', 1), ('briar', 2), ('homogenization', 1), ('wizard', 4), ('tavis', 1), ('smiley', 3), ('val', 2), ('chmerkovskiy', 2), ('afraid', 16), ('nutritionist', 2), ('perriello', 2), ('abductions', 1), ('revelations', 3), ('malaysia', 4), ('toads', 1), ('stud', 3), ('fomo', 1), ('radar', 4), ('meanest', 1), ('flat', 9), ('soda', 16), ('comfortably', 1), ('beto', 4), ('rourke', 3), ('hoffa', 1), ('ax', 4), ('lugar', 1), ('strain', 8), ('hamstring', 1), ('stripe', 2), ('jamaican', 1), ('bobsled', 2), ('delligatti', 1), ('humongous', 3), ('credibly', 1), ('economically', 2), ('tweed', 1), ('fiance', 1), ('gleefully', 3), ('eichner', 3), ('boogie', 3), ('saddam', 6), ('spiegel', 1), ('stealin', 1), ('livelihood', 2), ('intensely', 2), ('proposals', 5), ('evenly', 1), ('lapse', 4), ('strangest', 2), ('landscape', 6), ('indignant', 1), ('audacious', 1), ('millennium', 2), ('thorny', 3), ('kendall', 7), ('peep', 2), ('boneless', 2), ('skinless', 1), ('marshmallow', 3), ('breathtaking', 3), ('healers', 1), ('bolivia', 4), ('finland', 2), ('condoleezza', 2), ('airstrike', 3), ('fancyclothes', 1), ('rangers', 4), ('lance', 6), ('faithful', 3), ('clog', 5), ('inflame', 2), ('geyser', 1), ('rotation', 2), ('colorful', 5), ('mural', 3), ('diverse', 6), ('standoff', 7), ('twelfth', 1), ('mobile', 7), ('mooney', 1), ('possum', 1), ('gaze', 4), ('martian', 5), ('filmmaker', 3), ('mulan', 2), ('predictor', 3), ('eden', 2), ('baylee', 1), ('sunset', 3), ('empathize', 1), ('madagascar', 1), ('verbalize', 1), ('unbelievable', 3), ('stockpile', 4), ('skulk', 1), ('victorian', 1), ('soy', 4), ('blanco', 1), ('receptionist', 4), ('swan', 4), ('knockoff', 2), ('batarang', 1), ('immeasurable', 2), ('pineapple', 4), ('jumble', 2), ('celtic', 2), ('symbols', 1), ('persian', 1), ('rugs', 1), ('uneducated', 2), ('treaties', 1), ('militants', 9), ('somalian', 1), ('vloggers', 1), ('warranty', 1), ('outlast', 3), ('thompson', 11), ('leaguers', 2), ('boot', 7), ('steak', 9), ('tracee', 1), ('playfully', 2), ('gown', 8), ('cringeworthy', 1), ('panthers', 4), ('mow', 5), ('divisive', 2), ('caloric', 2), ('exceed', 1), ('shale', 1), ('geopolitics', 1), ('recusal', 1), ('cumbre', 1), ('ricas', 1), ('otro', 1), ('desastre', 1), ('para', 1), ('thorough', 3), ('heaviest', 1), ('vawa', 1), ('echo', 7), ('blankly', 1), ('europeans', 3), ('intolerant', 2), ('cripple', 6), ('liberace', 1), ('scarier', 2), ('cristiano', 1), ('nc', 4), ('besiege', 3), ('legislative', 2), ('prequel', 3), ('rundown', 2), ('darrelle', 1), ('revis', 1), ('robust', 2), ('putter', 2), ('norah', 1), ('malkovich', 1), ('pauline', 1), ('kael', 1), ('roadster', 1), ('schoolchildren', 2), ('outcry', 1), ('arsenal', 1), ('preconceive', 1), ('permafrost', 1), ('greenland', 2), ('afd', 1), ('succubus', 1), ('mankind', 5), ('spare', 4), ('papa', 6), ('bulbous', 1), ('deform', 2), ('lactate', 2), ('hefner', 4), ('freakonomist', 1), ('ge', 2), ('weightlifters', 1), ('promposal', 3), ('derrick', 1), ('hype', 4), ('dig', 12), ('wildcat', 2), ('youtuber', 2), ('cringe', 1), ('amateurish', 1), ('spongebob', 2), ('squarepants', 1), ('boredom', 3), ('highways', 5), ('trolley', 1), ('tile', 2), ('backsplash', 1), ('enron', 1), ('krill', 2), ('orleans', 12), ('households', 5), ('confident', 12), ('discussion', 5), ('temper', 1), ('woefully', 3), ('reckless', 7), ('salesman', 11), ('razzle', 1), ('dazzle', 3), ('pt', 4), ('cookout', 1), ('unattractive', 1), ('attendee', 5), ('wtc', 1), ('coerce', 2), ('useless', 4), ('jacket', 11), ('clearheaded', 1), ('reactionist', 1), ('morons', 1), ('della', 1), ('safest', 3), ('remainder', 5), ('straighten', 2), ('bishop', 5), ('dutifully', 1), ('mahoney', 1), ('brangelina', 1), ('paleontologists', 3), ('generator', 1), ('ballerina', 1), ('veterinarian', 2), ('horseback', 1), ('paparazzi', 2), ('camouflage', 1), ('upstage', 1), ('grossest', 2), ('hangover', 4), ('remedy', 1), ('sr', 1), ('download', 3), ('immoral', 4), ('flaunt', 3), ('freelancer', 1), ('scrape', 1), ('khans', 1), ('bloggers', 4), ('corny', 2), ('gyrocopter', 1), ('geek', 3), ('silmarillion', 1), ('recess', 4), ('speechwriter', 1), ('saver', 1), ('rosemary', 2), ('farina', 1), ('lighten', 2), ('athletic', 4), ('trotters', 1), ('subdue', 2), ('soil', 5), ('transcripts', 1), ('deceitful', 1), ('deviously', 1), ('alter', 9), ('unibeam', 1), ('instal', 6), ('fielder', 1), ('dugout', 2), ('toothpicks', 1), ('testers', 1), ('advocacy', 4), ('hilary', 7), ('duff', 7), ('tasered', 1), ('appellate', 1), ('inherit', 2), ('coronation', 1), ('pest', 1), ('unusable', 1), ('sprig', 1), ('parsley', 1), ('ham', 7), ('wedge', 2), ('dishwasher', 3), ('offensiveness', 1), ('grandfathers', 1), ('shipment', 5), ('decree', 2), ('svu', 1), ('deliberations', 1), ('certainly', 4), ('painter', 4), ('concise', 1), ('normality', 1), ('ego', 3), ('centric', 1), ('disgruntle', 4), ('arby', 8), ('remix', 3), ('leto', 2), ('joker', 4), ('indians', 6), ('wahoo', 1), ('compatible', 2), ('expectations', 11), ('idol', 4), ('tillerson', 18), ('gutter', 2), ('aloft', 1), ('counterproductive', 2), ('affordable', 15), ('anthropologists', 4), ('lowe', 4), ('snowiest', 1), ('fabulous', 3), ('abbas', 2), ('homeowner', 4), ('inspectors', 3), ('mortician', 2), ('tableside', 1), ('brussels', 4), ('hare', 5), ('krishnas', 1), ('krishna', 4), ('buddha', 5), ('decluttering', 2), ('tuesdays', 2), ('morrie', 1), ('bestseller', 2), ('aerocar', 1), ('troposphere', 1), ('arrivals', 2), ('peterson', 2), ('definition', 9), ('behaivor', 1), ('plow', 6), ('cialis', 1), ('oceans', 6), ('reviewer', 1), ('compose', 3), ('mugshot', 2), ('propublica', 2), ('kobach', 3), ('partial', 4), ('wannabe', 2), ('sniff', 2), ('uptick', 3), ('photographer', 16), ('subscribe', 1), ('ant', 7), ('proxies', 1), ('sympathizers', 2), ('embolden', 2), ('acquittal', 2), ('baruch', 1), ('oxy', 1), ('reapplies', 2), ('carmex', 2), ('intervals', 2), ('boner', 2), ('kellogg', 2), ('choco', 1), ('obvious', 9), ('matthew', 9), ('oversight', 2), ('psychologists', 5), ('hoda', 1), ('kotb', 1), ('bead', 3), ('manhattan', 7), ('goofy', 2), ('ridge', 2), ('lads', 1), ('liverpool', 1), ('rebellion', 2), ('boomer', 6), ('productivity', 5), ('kickstarter', 2), ('penguins', 4), ('terrarium', 1), ('poz', 1), ('ballmer', 1), ('tig', 2), ('notaro', 2), ('beginner', 3), ('chakras', 1), ('sequel', 10), ('planners', 2), ('rodgers', 2), ('filthy', 6), ('ding', 3), ('inept', 1), ('declaration', 2), ('swine', 2), ('borneo', 1), ('werewolf', 4), ('exceptionally', 2), ('supermodel', 3), ('pioneer', 4), ('goody', 1), ('govern', 5), ('hairbrushes', 1), ('scalp', 2), ('insolent', 1), ('delicately', 1), ('broach', 1), ('candlelight', 3), ('vigil', 4), ('kaminski', 1), ('nov', 2), ('std', 2), ('coolest', 3), ('thandie', 1), ('newton', 3), ('repulsive', 2), ('rewatching', 2), ('photoshop', 2), ('abduct', 2), ('winwood', 1), ('christcon', 1), ('cameras', 8), ('maternity', 5), ('robber', 4), ('unfriending', 1), ('chiefs', 3), ('callaghan', 1), ('diarrhea', 2), ('rug', 4), ('cartwheel', 1), ('intervention', 4), ('ribbons', 1), ('marinara', 1), ('vikings', 4), ('vicinity', 1), ('macarena', 1), ('speculate', 3), ('ceaseless', 1), ('parrot', 4), ('bayless', 1), ('hayward', 1), ('homeroom', 1), ('lynette', 1), ('frederick', 4), ('douglass', 3), ('valiantly', 1), ('tic', 1), ('tac', 1), ('grandmaster', 2), ('gambit', 3), ('portlandia', 1), ('mra', 1), ('lewinsky', 2), ('exploit', 4), ('alaskan', 3), ('digitalhealth', 1), ('breath', 9), ('disposal', 1), ('technicians', 3), ('raisinets', 2), ('bloat', 4), ('coffers', 2), ('harbinger', 2), ('bachata', 1), ('halo', 1), ('multiplayer', 1), ('cater', 4), ('bizarrely', 2), ('shelfie', 1), ('ariana', 9), ('kukors', 1), ('yahoo', 7), ('newfront', 2), ('aoki', 2), ('edm', 1), ('demonic', 2), ('silverware', 1), ('prepping', 1), ('reasonably', 1), ('portion', 4), ('barbershop', 1), ('henchman', 1), ('turbine', 1), ('jennings', 2), ('obscure', 4), ('alia', 1), ('shawkat', 1), ('lurid', 1), ('pharmacist', 1), ('zimmerman', 8), ('consulate', 3), ('ugly', 13), ('ian', 3), ('mckellen', 3), ('newsrooms', 2), ('espionage', 2), ('aviary', 2), ('rogue', 4), ('uneasy', 4), ('autistic', 4), ('elitist', 2), ('audubon', 4), ('plumage', 1), ('debrief', 1), ('cocaine', 7), ('publications', 2), ('ungrateful', 1), ('tyra', 2), ('stereo', 1), ('gavel', 2), ('trendy', 2), ('communal', 1), ('menthol', 1), ('eaves', 1), ('outliers', 1), ('fairer', 1), ('admissions', 5), ('madeleine', 2), ('albright', 3), ('jokester', 1), ('aereo', 2), ('liver', 7), ('brita', 3), ('thrower', 1), ('greed', 1), ('sarawak', 1), ('satire', 2), ('lago', 10), ('swastika', 6), ('elena', 3), ('kagan', 2), ('ipads', 1), ('telecast', 2), ('viewership', 2), ('dreary', 1), ('passionless', 1), ('envision', 2), ('lofty', 2), ('mein', 1), ('hrer', 1), ('voyeur', 1), ('candice', 1), ('patton', 5), ('slower', 2), ('reuben', 2), ('midsize', 1), ('fascinate', 7), ('excessive', 3), ('jabbar', 1), ('mustard', 2), ('physicist', 2), ('accelerate', 1), ('copycat', 4), ('adaptations', 1), ('lundergan', 1), ('blacklivesmatter', 3), ('gestapo', 2), ('speechless', 5), ('carton', 1), ('standpoint', 1), ('scholarships', 1), ('ronald', 4), ('dowd', 3), ('killers', 2), ('tampon', 12), ('grover', 2), ('panhandlers', 1), ('horseshoe', 1), ('understandably', 1), ('dose', 3), ('successories', 1), ('drexel', 1), ('satirical', 3), ('sadness', 3), ('caterer', 1), ('potatoes', 4), ('genuinely', 2), ('mindhunter', 1), ('cuter', 2), ('mandy', 2), ('ingber', 1), ('freezers', 1), ('fart', 3), ('discriminate', 7), ('mena', 1), ('dna', 8), ('material', 9), ('icbm', 2), ('rift', 1), ('cleanse', 4), ('discriminatory', 2), ('revolt', 2), ('abby', 3), ('wambach', 1), ('crumble', 3), ('adjacent', 4), ('xl', 3), ('orrin', 6), ('socioeconomic', 2), ('bracket', 2), ('fritz', 1), ('macbook', 1), ('cord', 10), ('zealand', 4), ('generous', 7), ('greenpeace', 3), ('forest', 9), ('morty', 2), ('stylist', 2), ('shoddy', 1), ('erdogan', 3), ('governance', 1), ('culinary', 4), ('alba', 3), ('en', 3), ('passant', 1), ('chessboard', 1), ('shadowy', 1), ('dimly', 1), ('allergic', 4), ('personals', 3), ('omit', 2), ('goiter', 1), ('scenery', 1), ('uninterested', 2), ('ellie', 3), ('goulding', 2), ('personalities', 3), ('entrance', 1), ('instinctively', 2), ('preventative', 3), ('caribbean', 4), ('aboard', 3), ('catamaran', 1), ('nash', 3), ('fd', 1), ('safari', 3), ('roe', 4), ('providers', 4), ('eggnog', 1), ('footballs', 2), ('litmus', 1), ('outcrop', 1), ('pedophile', 2), ('anytime', 1), ('hardworking', 3), ('landmass', 1), ('suburb', 2), ('mediate', 3), ('heirs', 2), ('overjoy', 1), ('mcmuffins', 1), ('dice', 1), ('spain', 12), ('waxwork', 1), ('attenborough', 2), ('courtship', 1), ('fifties', 1), ('binomials', 1), ('wu', 2), ('tang', 2), ('clan', 2), ('rza', 1), ('toolbar', 1), ('cursor', 1), ('slideshow', 2), ('xxxxii', 1), ('anguish', 2), ('perjurer', 1), ('kinds', 4), ('sultry', 2), ('scrub', 3), ('napkinless', 1), ('brighten', 5), ('fingerprint', 3), ('fluent', 2), ('juul', 1), ('sleek', 2), ('smoker', 7), ('protective', 4), ('squalid', 1), ('vital', 4), ('tearless', 1), ('onions', 3), ('emmanuelle', 1), ('seigner', 1), ('fur', 4), ('holyoke', 1), ('disruption', 4), ('minidress', 1), ('gq', 3), ('skimp', 1), ('hippie', 6), ('cutups', 1), ('automate', 5), ('foxconn', 2), ('les', 4), ('mis', 3), ('rables', 1), ('asylums', 1), ('orifice', 1), ('carrey', 2), ('verreos', 1), ('geeks', 3), ('premarital', 1), ('hoya', 1), ('cybergranny', 1), ('mansion', 5), ('aaa', 1), ('aspire', 6), ('danielle', 2), ('macdonald', 2), ('kayaker', 1), ('hibernate', 1), ('mika', 1), ('himmler', 1), ('unforgivable', 2), ('dobkin', 1), ('schmitt', 1), ('coptic', 1), ('chastise', 3), ('theology', 3), ('mackenzie', 2), ('latifah', 1), ('newman', 4), ('volcano', 5), ('waterfall', 1), ('sweetest', 3), ('dependence', 5), ('bravely', 3), ('indiscrimination', 1), ('humanists', 1), ('obelisk', 1), ('armchair', 1), ('distractions', 2), ('falsehoods', 1), ('starter', 4), ('chibok', 2), ('diner', 5), ('sycophant', 1), ('frilly', 1), ('prodigy', 2), ('ged', 1), ('overthrow', 3), ('ossoff', 1), ('lossoff', 1), ('dinty', 1), ('poupon', 1), ('uproar', 3), ('arabic', 1), ('calligraphy', 1), ('trumplethinskin', 1), ('fable', 2), ('concrete', 9), ('tyrion', 1), ('daenerys', 1), ('swimsuits', 1), ('disturbingly', 5), ('fragile', 3), ('christina', 6), ('aguilera', 4), ('recognizable', 1), ('investors', 6), ('guru', 2), ('overhear', 4), ('melinda', 4), ('scoggins', 1), ('interviewer', 4), ('enthusiastic', 2), ('passerby', 2), ('manual', 3), ('derelict', 1), ('rainbow', 9), ('timeline', 2), ('zodiac', 2), ('guerrilla', 1), ('plummet', 8), ('jaw', 7), ('wk', 1), ('sec', 5), ('replay', 3), ('england', 5), ('exec', 8), ('proverb', 1), ('restrooms', 2), ('blogging', 1), ('liechtenstein', 2), ('charities', 1), ('plotters', 1), ('kilauea', 1), ('hawaiian', 4), ('bromance', 1), ('pin', 14), ('undercut', 3), ('infidelities', 1), ('basically', 5), ('sermon', 1), ('suspiciously', 3), ('gar', 1), ('unconstitutional', 3), ('blacker', 1), ('mayfield', 1), ('skunk', 2), ('streaker', 1), ('mta', 8), ('renovate', 2), ('sore', 3), ('confess', 7), ('ceremonially', 1), ('tickle', 2), ('gal', 4), ('gadot', 2), ('racy', 2), ('cowboys', 5), ('botanist', 1), ('hough', 1), ('endometriosis', 1), ('oswalt', 3), ('icky', 2), ('sauna', 1), ('analogy', 3), ('tiffani', 1), ('thiessen', 1), ('geithner', 2), ('ordinary', 8), ('elisabeth', 1), ('bler', 1), ('freshness', 2), ('peas', 4), ('congolese', 3), ('zohan', 1), ('der', 1), ('beek', 1), ('psych', 2), ('whelan', 1), ('nycb', 1), ('deux', 1), ('killmonger', 1), ('millennia', 4), ('evasion', 2), ('feces', 3), ('manipulation', 2), ('sooo', 1), ('defunct', 1), ('quarantine', 5), ('protocol', 1), ('barrier', 9), ('kenan', 1), ('inaccurate', 3), ('tsa', 7), ('ineffective', 3), ('procrastinate', 3), ('reuse', 2), ('militias', 3), ('eyelashes', 2), ('mites', 1), ('arlington', 2), ('cemetery', 6), ('crackers', 2), ('scanner', 2), ('unpopped', 1), ('kernels', 1), ('glam', 3), ('mustang', 1), ('secrecy', 2), ('colonization', 2), ('subcontinent', 1), ('gloat', 1), ('draconian', 1), ('vibes', 3), ('fordham', 1), ('nutritional', 3), ('allah', 1), ('funnies', 2), ('carnival', 6), ('darla', 1), ('personalize', 4), ('hamburglar', 1), ('robble', 3), ('radiohead', 1), ('watchers', 3), ('colon', 1), ('brando', 1), ('genres', 1), ('rodent', 3), ('vrckovnik', 1), ('tulip', 1), ('dryers', 2), ('sylville', 1), ('investor', 2), ('witty', 1), ('lapel', 1), ('bargain', 1), ('adjective', 1), ('mariel', 1), ('hemingway', 2), ('usually', 2), ('lips', 6), ('cuckoo', 3), ('outsider', 4), ('bracelet', 3), ('pharmacy', 2), ('feedback', 2), ('katherine', 1), ('heigl', 1), ('export', 3), ('mugshots', 1), ('standard', 9), ('proactive', 1), ('dinklage', 4), ('granny', 1), ('jogger', 4), ('shovel', 6), ('lesbians', 4), ('sunny', 3), ('patio', 4), ('misogynist', 2), ('embattle', 3), ('asylum', 7), ('scarborough', 4), ('kremlin', 4), ('ineptitude', 1), ('inappropriate', 5), ('uprise', 3), ('yordano', 1), ('ventura', 1), ('marte', 1), ('calumet', 1), ('tandem', 3), ('bondage', 1), ('dungeon', 3), ('jeanette', 1), ('premiums', 2), ('parotid', 1), ('glands', 2), ('encase', 2), ('ar', 2), ('bibhu', 1), ('mohapatra', 1), ('primarily', 3), ('communicate', 3), ('diseases', 6), ('beta', 3), ('czar', 6), ('hater', 2), ('venison', 1), ('sausage', 5), ('programmatic', 2), ('jameson', 2), ('dropthecover', 1), ('marital', 4), ('contradict', 4), ('vito', 1), ('corleone', 1), ('benefactor', 4), ('theoretical', 3), ('admirals', 1), ('vicar', 1), ('pokemon', 6), ('newport', 1), ('histories', 1), ('katy', 12), ('bloom', 7), ('asap', 1), ('electrify', 2), ('racists', 3), ('pc', 1), ('nif', 1), ('fracas', 1), ('detainees', 6), ('livestreams', 1), ('liveblogged', 1), ('locust', 1), ('clearances', 2), ('harley', 2), ('davidson', 3), ('clingy', 2), ('oates', 1), ('retake', 3), ('marines', 5), ('rhinos', 1), ('ecosystem', 5), ('retrain', 1), ('scavengers', 1), ('dobrev', 2), ('wrench', 6), ('vampire', 4), ('diaries', 3), ('ferocious', 1), ('deprecate', 2), ('peppermint', 1), ('mocha', 2), ('harding', 1), ('shelton', 3), ('atm', 3), ('reich', 3), ('persuade', 1), ('eucharist', 1), ('bmw', 2), ('bungle', 2), ('originally', 5), ('toons', 1), ('nidetch', 1), ('recanvass', 1), ('silently', 7), ('sterilization', 1), ('discernible', 3), ('hostility', 3), ('deray', 3), ('mckesson', 3), ('patty', 3), ('lube', 2), ('violations', 8), ('honduran', 2), ('diaspora', 1), ('insiders', 4), ('wmd', 1), ('yorkers', 9), ('marc', 2), ('andreessen', 1), ('colonialism', 2), ('louisa', 1), ('gornick', 1), ('metro', 3), ('vessel', 4), ('manson', 4), ('leery', 1), ('screenplay', 2), ('gruesome', 5), ('exile', 2), ('manuscripts', 1), ('mormon', 6), ('underemployed', 1), ('attract', 14), ('vocalize', 1), ('unscripted', 1), ('sentiment', 2), ('weirder', 1), ('norm', 2), ('col', 2), ('texans', 3), ('starlight', 1), ('rink', 3), ('catherine', 2), ('zeta', 1), ('glacier', 4), ('lifeguard', 4), ('glee', 3), ('iheartradio', 2), ('congrats', 1), ('pregnancies', 2), ('thru', 4), ('myroommateisweird', 1), ('roomie', 1), ('nightmares', 4), ('paternalizing', 1), ('rodham', 1), ('cult', 6), ('faqs', 1), ('cartilage', 1), ('insert', 6), ('threesome', 2), ('drought', 7), ('pine', 6), ('hershey', 3), ('max', 6), ('mobiles', 1), ('cadillac', 1), ('burmese', 2), ('dionne', 1), ('warwick', 2), ('bobbi', 2), ('kristina', 2), ('sludge', 2), ('nerf', 1), ('dune', 2), ('morse', 1), ('cocky', 3), ('maraud', 1), ('hordes', 2), ('guitars', 3), ('poacher', 1), ('jihad', 4), ('admission', 3), ('megadeth', 1), ('rust', 2), ('holiest', 1), ('windowless', 1), ('ingrown', 2), ('pillage', 1), ('counterparts', 3), ('groot', 3), ('deaf', 6), ('martha', 7), ('kavolius', 1), ('possibilities', 1), ('warmonger', 1), ('tampa', 4), ('joseph', 6), ('fiennes', 1), ('tidal', 4), ('tina', 9), ('fey', 6), ('tango', 2), ('foxtrot', 1), ('kearney', 1), ('darwin', 3), ('mailer', 2), ('disparities', 1), ('prescribe', 3), ('popovich', 2), ('froth', 3), ('salaam', 1), ('partygoers', 1), ('recite', 3), ('flexible', 2), ('sniglets', 1), ('dascha', 1), ('polanco', 1), ('insecure', 2), ('tumblr', 1), ('reclassify', 1), ('ransom', 2), ('biologists', 7), ('pronunciation', 1), ('gaunt', 3), ('siberian', 1), ('cruelly', 2), ('xavier', 2), ('dolan', 2), ('giddily', 1), ('loserman', 1), ('hospitals', 4), ('validate', 1), ('emissions', 3), ('defective', 3), ('accurately', 2), ('carousel', 2), ('wean', 3), ('guardrail', 1), ('bangerz', 1), ('deadlocked', 2), ('peril', 3), ('osha', 2), ('ops', 2), ('titanium', 1), ('nannies', 1), ('thereisaidit', 1), ('nutritious', 1), ('farther', 1), ('monitor', 15), ('supernatural', 1), ('defenders', 1), ('ney', 1), ('countless', 1), ('schoolyard', 1), ('evaluations', 1), ('throats', 2), ('apathy', 2), ('classify', 12), ('mummies', 1), ('rural', 10), ('archbishops', 1), ('droves', 1), ('aweism', 1), ('soulful', 3), ('humanist', 1), ('transcendence', 1), ('snail', 1), ('chia', 1), ('negligible', 1), ('refusal', 4), ('luis', 1), ('gutierrez', 1), ('westernize', 1), ('dibs', 1), ('skeletons', 2), ('pompeii', 1), ('excavation', 1), ('facsimile', 1), ('infectious', 2), ('disconcert', 1), ('bogosian', 1), ('nemesis', 3), ('avenge', 2), ('via', 5), ('pallid', 1), ('withdrawal', 3), ('zales', 1), ('meaningless', 5), ('tarantula', 2), ('abedin', 1), ('trailblazers', 1), ('emoticon', 1), ('drowsy', 3), ('calculate', 3), ('trojan', 3), ('ingredients', 5), ('crucifix', 1), ('punisher', 1), ('brutally', 5), ('tente', 1), ('khlo', 2), ('crayon', 3), ('mischa', 1), ('barton', 1), ('outkast', 1), ('attainable', 1), ('marsh', 2), ('unwinnable', 2), ('huddle', 5), ('ambition', 7), ('careful', 5), ('foolproof', 2), ('jewry', 2), ('travelers', 7), ('mikey', 1), ('mutter', 3), ('criminalize', 3), ('herb', 2), ('casualties', 2), ('foam', 1), ('parish', 1), ('declassify', 3), ('larva', 4), ('adulthood', 3), ('moltzvah', 2), ('impersonate', 2), ('drift', 6), ('redirect', 1), ('def', 3), ('leppard', 1), ('specialize', 3), ('cuisine', 2), ('superstore', 1), ('deceptively', 1), ('tempurpedic', 1), ('darkest', 2), ('ricci', 1), ('solvents', 1), ('recuperate', 1), ('oncoming', 1), ('electoral', 8), ('schneider', 1), ('forklift', 2), ('aztec', 1), ('chowing', 1), ('stepson', 2), ('oberst', 1), ('cessna', 1), ('ahs', 2), ('teasers', 2), ('cedrick', 1), ('chatman', 1), ('halftime', 5), ('freight', 1), ('watcher', 4), ('piggy', 1), ('bhutanese', 1), ('lhabab', 1), ('duchen', 1), ('nephews', 1), ('fives', 2), ('unwarranted', 1), ('crouch', 2), ('ophelia', 1), ('shed', 8), ('aquaman', 4), ('bod', 2), ('recuse', 1), ('decapitate', 1), ('jockey', 2), ('draftkings', 2), ('fanduel', 1), ('willi', 1), ('strategies', 7), ('portfolio', 1), ('phd', 1), ('niagara', 1), ('belated', 3), ('greyhound', 5), ('gummi', 2), ('unharmed', 2), ('prepper', 1), ('mastectomy', 4), ('demoralize', 1), ('tonga', 1), ('olympian', 5), ('pita', 2), ('taufatofua', 1), ('irreplaceable', 1), ('huh', 2), ('disguise', 2), ('kindergartens', 1), ('contender', 2), ('attractions', 2), ('trainer', 6), ('adnan', 2), ('syed', 2), ('guitarist', 2), ('vinnie', 1), ('tomb', 4), ('nonindigenous', 1), ('entomologist', 1), ('professional', 13), ('videographer', 1), ('perky', 1), ('optimist', 3), ('underlie', 1), ('delaria', 2), ('titties', 1), ('fringe', 3), ('sect', 1), ('tolerate', 4), ('voila', 1), ('obedience', 2), ('sgt', 3), ('freely', 2), ('dumbing', 3), ('awww', 1), ('waterspout', 1), ('spacex', 1), ('minus', 1), ('cinnamon', 5), ('pippa', 1), ('barkley', 1), ('jukebox', 3), ('phantom', 1), ('andrea', 4), ('bocelli', 1), ('central', 17), ('napkins', 2), ('uptight', 1), ('matron', 1), ('businessmen', 1), ('dudley', 1), ('margarita', 4), ('murillo', 1), ('neoliberalism', 1), ('honduras', 2), ('overprivileged', 1), ('nowhere', 7), ('offshorers', 1), ('enact', 6), ('afi', 2), ('reply', 3), ('inboxes', 1), ('deflategate', 1), ('zest', 1), ('trinidad', 1), ('tobago', 1), ('commemorative', 3), ('leonardo', 8), ('dicaprio', 9), ('quantum', 2), ('dramatize', 1), ('menendez', 2), ('spinoff', 5), ('countryside', 1), ('panhandler', 1), ('spam', 3), ('revisions', 1), ('voucher', 2), ('trumpbeast', 1), ('difficulties', 1), ('seclude', 1), ('fencers', 1), ('element', 3), ('gunn', 4), ('psychotic', 2), ('snowden', 5), ('sibling', 4), ('sci', 8), ('malt', 1), ('homies', 1), ('ejaculation', 1), ('neutrogena', 1), ('instantly', 3), ('dissolve', 3), ('mower', 3), ('hustler', 3), ('antacid', 1), ('yearbook', 5), ('dopamine', 1), ('literature', 2), ('skateboard', 4), ('stroller', 3), ('logan', 2), ('juniors', 2), ('asbell', 1), ('juiced', 1), ('softly', 2), ('heterosexual', 2), ('weighty', 1), ('reissue', 1), ('fleetwood', 3), ('rumour', 2), ('jessie', 1), ('kimora', 2), ('gargamel', 1), ('darn', 2), ('kleenex', 2), ('inadequately', 2), ('warfare', 2), ('ira', 4), ('lucrative', 3), ('uncontrollably', 2), ('snoopy', 1), ('flow', 4), ('jlaw', 1), ('dominic', 1), ('casulli', 1), ('encouragement', 2), ('decriminalize', 2), ('mushroom', 6), ('bertolli', 1), ('saturate', 1), ('missouri', 11), ('nielsens', 1), ('trumpist', 1), ('holocaust', 13), ('diploma', 3), ('dc', 6), ('underdevelop', 1), ('tri', 2), ('arbor', 1), ('choreographer', 3), ('janine', 1), ('molinari', 1), ('infamy', 1), ('magnificent', 2), ('eclairs', 1), ('dorito', 1), ('wolff', 1), ('ofiesh', 1), ('kaytlin', 1), ('bailey', 1), ('portland', 6), ('stabbings', 1), ('grasshopper', 2), ('thorax', 1), ('clemson', 1), ('lsu', 1), ('millionaire', 6), ('icymi', 4), ('trumpian', 2), ('evangelicalism', 1), ('differentiation', 1), ('karma', 1), ('turban', 1), ('visibly', 6), ('unprecedented', 5), ('gendiy', 1), ('raddatz', 1), ('mvp', 1), ('volatility', 1), ('boulud', 1), ('scholarship', 9), ('alum', 1), ('mate', 14), ('necessary', 15), ('portray', 5), ('spokeswoman', 2), ('spokeschild', 1), ('griswold', 1), ('sportscast', 1), ('tropical', 4), ('farenthold', 3), ('nativity', 4), ('meteorologist', 4), ('prediction', 3), ('gabby', 2), ('giffords', 2), ('recommit', 2), ('mildly', 1), ('treatable', 2), ('aetna', 3), ('unintentionally', 1), ('contort', 2), ('technician', 6), ('thiel', 4), ('gawker', 6), ('urinal', 5), ('mbta', 1), ('peach', 3), ('cobbler', 1), ('pudding', 5), ('desserts', 1), ('trayvon', 3), ('destruct', 5), ('hellmann', 2), ('heir', 2), ('unbefitting', 1), ('magnate', 1), ('carmen', 1), ('carrera', 1), ('maid', 5), ('antidepressant', 4), ('comparison', 3), ('watermelon', 6), ('slushie', 1), ('jpmorgan', 2), ('parker', 4), ('ouija', 2), ('squiggly', 1), ('sleepover', 3), ('preserver', 1), ('prairie', 2), ('unbreakable', 1), ('enrique', 1), ('iglesias', 1), ('kournikova', 1), ('stimulation', 1), ('popularity', 3), ('zara', 3), ('subdivisions', 1), ('fiber', 1), ('optics', 1), ('wax', 6), ('radish', 1), ('outta', 3), ('sophie', 4), ('turner', 5), ('fryer', 1), ('goose', 4), ('flap', 5), ('manga', 2), ('mobster', 1), ('taekwondo', 1), ('horizons', 1), ('necrotic', 1), ('stern', 3), ('organic', 7), ('jerseys', 1), ('unplanned', 1), ('ernest', 4), ('belamide', 1), ('butterball', 2), ('julia', 3), ('dreyfus', 1), ('woodwork', 2), ('billiards', 1), ('dominica', 1), ('robocall', 2), ('culturally', 2), ('insignificant', 1), ('proudest', 2), ('simulation', 1), ('conventionally', 2), ('abhorrent', 1), ('chaotic', 2), ('burundi', 3), ('beekeeper', 2), ('execs', 4), ('moron', 8), ('civilization', 4), ('quintanilla', 1), ('outlet', 4), ('suburban', 5), ('beautify', 1), ('wrestler', 2), ('takedown', 2), ('succeed', 2), ('decoy', 3), ('tarana', 1), ('burke', 2), ('bipolar', 3), ('hizballah', 1), ('halle', 2), ('undying', 1), ('girlboss', 1), ('perpetuate', 3), ('rouse', 1), ('blindness', 3), ('medals', 2), ('fulfill', 5), ('wiener', 2), ('alfonso', 2), ('ribeiro', 2), ('dataclysm', 1), ('moscow', 4), ('burnout', 1), ('lightweights', 1), ('pixar', 6), ('dumpling', 2), ('darling', 2), ('scripps', 2), ('poseidon', 1), ('windsurf', 1), ('contestants', 7), ('vowel', 1), ('downpour', 1), ('dipshits', 3), ('sneer', 1), ('intro', 3), ('panties', 3), ('wackier', 1), ('snakepit', 1), ('machiavellian', 3), ('conan', 9), ('rotund', 1), ('cobra', 3), ('monogramed', 1), ('cum', 3), ('disturbance', 2), ('arafat', 1), ('individually', 5), ('sprite', 2), ('cola', 2), ('perceive', 1), ('habitable', 1), ('emerson', 2), ('palmer', 3), ('bertha', 1), ('cere', 2), ('southerners', 1), ('babysit', 1), ('rekindle', 2), ('winston', 2), ('churchill', 4), ('eavesdrop', 1), ('utero', 1), ('deflate', 3), ('recruiter', 5), ('toothbrush', 4), ('oblivion', 1), ('hypnotic', 2), ('cyberattack', 2), ('cuddly', 1), ('australians', 2), ('rhys', 1), ('inherent', 4), ('selfhood', 1), ('tame', 3), ('ssy', 1), ('impeccable', 1), ('obsessive', 7), ('compulsive', 4), ('aggravate', 1), ('sunbathe', 1), ('teas', 1), ('practically', 4), ('coneflower', 1), ('designations', 1), ('unimpressed', 4), ('mitthew', 1), ('airways', 2), ('appetizer', 1), ('upload', 3), ('battlefront', 1), ('slicker', 1), ('relatively', 4), ('oxen', 1), ('yearly', 2), ('tithe', 1), ('grain', 5), ('endangerment', 1), ('dylann', 1), ('raccoon', 3), ('remembrance', 3), ('rahm', 7), ('emanuel', 7), ('dyke', 3), ('bankruptcy', 5), ('depopulate', 1), ('storybook', 2), ('tis', 1), ('cheeky', 3), ('jingle', 2), ('mandate', 4), ('calmer', 1), ('squeeze', 6), ('walgreens', 9), ('torchlit', 1), ('brien', 4), ('incurable', 1), ('rodeo', 2), ('strawberries', 1), ('unique', 8), ('merchandise', 2), ('elk', 4), ('ginger', 2), ('minj', 1), ('pragmatist', 1), ('missions', 2), ('camper', 3), ('hitchhikers', 1), ('awkwardness', 1), ('angst', 2), ('aikido', 1), ('arthur', 3), ('flier', 1), ('mexicans', 3), ('ronnie', 1), ('subminimum', 1), ('stool', 2), ('rerouting', 2), ('kkk', 2), ('segregate', 3), ('criticisms', 3), ('dwarvish', 1), ('headscarf', 2), ('delegation', 3), ('rosie', 4), ('donnell', 4), ('vibrate', 2), ('pager', 1), ('pocahontas', 3), ('fundamentalists', 3), ('smb', 1), ('fumble', 4), ('torrenting', 1), ('picket', 3), ('raphaelite', 1), ('contessa', 1), ('lakers', 5), ('electrician', 1), ('priests', 1), ('redesign', 2), ('jana', 1), ('kramer', 2), ('database', 3), ('wisely', 2), ('ifttt', 1), ('transactions', 1), ('prankster', 1), ('caregiver', 1), ('meldonium', 1), ('minibar', 1), ('dominican', 1), ('warplanes', 1), ('zookeeper', 3), ('feeble', 2), ('wallis', 1), ('allowance', 3), ('shutter', 3), ('ponytail', 4), ('schism', 2), ('tribalism', 1), ('catastrophe', 3), ('parsons', 1), ('inedibles', 1), ('beyonce', 11), ('clap', 6), ('prospect', 5), ('toni', 2), ('braxton', 2), ('unbreak', 2), ('sexuality', 8), ('rica', 1), ('feat', 1), ('bitchy', 1), ('swoop', 1), ('munchies', 1), ('efficiency', 1), ('millard', 1), ('fillmore', 1), ('plat', 2), ('smuggler', 1), ('fog', 4), ('heighten', 3), ('curly', 4), ('celibacy', 3), ('furries', 1), ('quaker', 4), ('formulate', 2), ('hinder', 2), ('pharoah', 2), ('quincea', 1), ('sizemore', 2), ('innovation', 8), ('nikes', 1), ('adjudicatory', 1), ('tendon', 1), ('goldstein', 1), ('pitchers', 1), ('maximum', 3), ('strollers', 1), ('kotex', 2), ('confetti', 2), ('popper', 2), ('puck', 1), ('savior', 1), ('hoarder', 3), ('bolling', 1), ('somali', 4), ('sailors', 3), ('levitt', 2), ('rhythm', 1), ('janet', 6), ('vanquish', 2), ('foe', 4), ('goblet', 2), ('ignite', 3), ('tibetan', 3), ('gospel', 5), ('generously', 1), ('bishops', 3), ('pedophiles', 1), ('seabird', 1), ('landowning', 1), ('subhuman', 2), ('ethan', 2), ('hawke', 2), ('laurel', 2), ('canyon', 3), ('exemption', 1), ('stockbroker', 3), ('dwight', 3), ('outsmart', 3), ('pringles', 2), ('skid', 2), ('masochists', 2), ('anchorage', 1), ('crotchless', 1), ('typeface', 1), ('newborns', 3), ('outpouring', 2), ('insincerity', 1), ('plugin', 1), ('bail', 3), ('nas', 2), ('sartorial', 1), ('punta', 1), ('cana', 1), ('withhold', 7), ('tarnish', 3), ('telegraph', 1), ('hmm', 1), ('pander', 6), ('momoa', 2), ('dumbass', 3), ('textbooks', 1), ('twentysomething', 2), ('disillusion', 6), ('fling', 3), ('casket', 3), ('flume', 2), ('nicky', 2), ('notion', 3), ('reggaet', 1), ('nuggets', 1), ('syllable', 1), ('fedotowsky', 1), ('fianc', 4), ('manno', 1), ('assing', 1), ('predictably', 2), ('melanie', 2), ('griffith', 1), ('superintendent', 2), ('zachary', 2), ('quinto', 2), ('censure', 1), ('momentum', 4), ('vulnerabilities', 3), ('territory', 2), ('fiery', 3), ('widespread', 5), ('asimov', 1), ('robotics', 2), ('videotape', 2), ('walkway', 2), ('luck', 4), ('administrations', 1), ('ugliness', 2), ('offload', 1), ('hungary', 1), ('colts', 1), ('potomac', 1), ('hush', 2), ('madoff', 1), ('cellmate', 2), ('tuberculosis', 2), ('obvi', 2), ('spoiler', 1), ('labrador', 1), ('fafsa', 1), ('apgar', 1), ('hopefuls', 6), ('typos', 1), ('pothole', 1), ('laffy', 2), ('taffy', 2), ('cobblestone', 1), ('cyclone', 3), ('devastation', 1), ('vanuatu', 1), ('rehabilitation', 1), ('palance', 1), ('moranis', 1), ('whoop', 4), ('snapper', 1), ('xylophonist', 1), ('joyful', 2), ('brock', 4), ('burkini', 1), ('patriarchy', 3), ('blindside', 6), ('milestones', 2), ('tamagotchi', 1), ('celebrations', 2), ('globalist', 1), ('plutocrat', 1), ('incarcerate', 1), ('abide', 1), ('hallburton', 1), ('kirkus', 1), ('collections', 1), ('eternally', 2), ('phenomenon', 2), ('dusty', 1), ('reign', 3), ('permutations', 1), ('erik', 3), ('estrada', 1), ('quaaludes', 1), ('quaalude', 1), ('thaw', 2), ('shards', 2), ('bouquet', 2), ('lovin', 1), ('showerhead', 2), ('bashar', 6), ('delegitimize', 1), ('favreau', 1), ('muzlim', 1), ('terroist', 1), ('cowpoke', 1), ('aruban', 1), ('goer', 2), ('marti', 1), ('noxon', 1), ('anorexia', 2), ('dunst', 1), ('genealogists', 1), ('lotus', 1), ('eternal', 4), ('serenity', 1), ('toaster', 6), ('strew', 1), ('ellison', 1), ('handlers', 3), ('uninspiring', 1), ('credible', 2), ('legends', 5), ('pepa', 1), ('hogsmeade', 1), ('russet', 1), ('univision', 2), ('hairdresser', 2), ('sakharov', 1), ('butcher', 2), ('narratives', 2), ('cobweb', 1), ('trimester', 2), ('predictable', 3), ('sectarian', 1), ('authoritarianism', 1), ('bahrain', 1), ('otter', 2), ('secular', 1), ('gilliam', 1), ('philander', 1), ('voyeurs', 1), ('taller', 2), ('livable', 2), ('pabst', 4), ('drinker', 2), ('maureen', 1), ('publication', 3), ('warheads', 1), ('laramie', 1), ('fluorescent', 2), ('prospective', 4), ('mohamed', 3), ('quiver', 1), ('metaphor', 4), ('pacs', 3), ('gumby', 1), ('fil', 3), ('burglary', 2), ('bystander', 2), ('pros', 4), ('mediation', 1), ('microscopic', 1), ('petri', 1), ('solitaire', 2), ('raunchy', 1), ('lactose', 1), ('alvin', 1), ('ailey', 2), ('albany', 2), ('blissfully', 4), ('boast', 3), ('masterstoke', 1), ('visualize', 1), ('irresponsible', 1), ('presser', 1), ('ref', 4), ('cannabis', 4), ('seizures', 1), ('reactions', 3), ('coco', 2), ('atx', 1), ('clive', 1), ('cussler', 1), ('believers', 2), ('skeptics', 1), ('overrule', 3), ('clearance', 6), ('olay', 1), ('moisturize', 1), ('fatally', 8), ('specific', 5), ('scampis', 1), ('appal', 4), ('atop', 2), ('scorch', 3), ('org', 1), ('hydrate', 1), ('terrier', 3), ('jonas', 7), ('olivia', 6), ('culpo', 1), ('carpool', 5), ('inexplicably', 1), ('onlookers', 1), ('pompous', 2), ('cigar', 1), ('aficionado', 2), ('seniority', 1), ('profession', 1), ('reiner', 2), ('profess', 2), ('goth', 2), ('birdhouse', 1), ('faction', 1), ('dee', 3), ('gosselaar', 1), ('imdb', 2), ('specifics', 2), ('fiercely', 4), ('pavement', 3), ('fort', 3), ('encrypt', 3), ('aftershocks', 1), ('bicentennial', 1), ('unnamed', 2), ('ruckeyser', 1), ('shortcut', 1), ('tamir', 4), ('zinc', 1), ('grandkids', 6), ('remission', 1), ('westernization', 1), ('salsa', 5), ('edgy', 2), ('complicate', 14), ('seaside', 2), ('cottage', 1), ('waverly', 1), ('eject', 2), ('bello', 1), ('cinzano', 1), ('shithole', 5), ('revelation', 3), ('ayurveda', 1), ('conversationalist', 1), ('bound', 3), ('daphne', 1), ('paypal', 1), ('girlfriends', 5), ('ios', 1), ('earplugs', 1), ('walkouts', 1), ('butterfly', 7), ('womanhood', 2), ('congressmen', 5), ('homemaker', 2), ('rubbermaid', 1), ('intelligent', 4), ('octopus', 2), ('profitably', 1), ('aluminum', 4), ('supplier', 1), ('leah', 2), ('remini', 2), ('scientology', 3), ('servicewomen', 1), ('eyeball', 1), ('jeweler', 1), ('slater', 2), ('tbs', 2), ('unrelated', 1), ('marshall', 2), ('metropolitan', 1), ('usda', 9), ('garofalo', 1), ('cancellation', 4), ('dickipedia', 1), ('bikram', 1), ('planetarium', 1), ('unrelenting', 1), ('expenditure', 1), ('mannequin', 3), ('successor', 2), ('frenzied', 1), ('expendables', 2), ('demographics', 2), ('unofficial', 1), ('weepy', 1), ('pansy', 1), ('swalwell', 1), ('distraught', 4), ('hoagie', 2), ('observations', 2), ('survival', 8), ('baha', 1), ('southeast', 2), ('devito', 2), ('thinner', 1), ('granta', 1), ('deride', 1), ('philistines', 1), ('celinda', 1), ('intergenerational', 1), ('huff', 2), ('brooke', 2), ('maisie', 1), ('politicize', 1), ('judiciary', 1), ('techie', 1), ('pectoral', 1), ('taser', 1), ('tight', 4), ('corroborate', 1), ('victor', 4), ('hugo', 2), ('lunchables', 1), ('startups', 2), ('houghton', 1), ('mifflin', 1), ('harcourt', 1), ('pusha', 1), ('julie', 1), ('andrews', 1), ('reversal', 4), ('talc', 1), ('hydraulic', 6), ('genders', 1), ('grimsby', 1), ('snuggly', 1), ('analyze', 4), ('squalor', 1), ('doubter', 1), ('defer', 1), ('legionnaire', 1), ('potent', 1), ('psychosis', 1), ('leyco', 1), ('nyquil', 1), ('nicely', 3), ('andreas', 3), ('rediscover', 6), ('dictator', 2), ('brazilian', 3), ('murals', 2), ('portable', 2), ('absorbency', 1), ('tacky', 1), ('treasurer', 2), ('statisticians', 1), ('scenarios', 2), ('disfigure', 2), ('catcaller', 1), ('gavels', 1), ('buren', 1), ('leopard', 3), ('impala', 1), ('exam', 5), ('vol', 1), ('vent', 1), ('appetizers', 3), ('airborne', 3), ('luckiest', 1), ('beckham', 4), ('pout', 1), ('embitter', 1), ('menus', 1), ('sienna', 3), ('humorous', 1), ('mcchicken', 1), ('fundamentally', 1), ('bark', 7), ('paw', 5), ('manvendra', 1), ('singh', 1), ('gohil', 1), ('neurological', 1), ('dolphinsoul', 1), ('someday', 4), ('showerin', 1), ('bridal', 4), ('sloppy', 3), ('chrysalis', 1), ('gastropub', 1), ('smg', 1), ('snapshot', 2), ('behaviors', 4), ('coliseum', 1), ('nxivm', 1), ('masterson', 1), ('biomom', 1), ('bodymate', 1), ('massively', 1), ('disengage', 1), ('fanpage', 1), ('hottie', 1), ('facialist', 1), ('downtown', 1), ('misspeak', 1), ('dolls', 4), ('chainsaws', 1), ('homebuilding', 1), ('sprinklers', 1), ('halliburton', 4), ('kidman', 1), ('preference', 1), ('suite', 3), ('badtz', 1), ('maru', 1), ('sanrio', 1), ('counteract', 1), ('teresa', 2), ('eel', 1), ('emperor', 3), ('smelt', 1), ('renominates', 1), ('ins', 1), ('representative', 7), ('julius', 2), ('facemask', 1), ('fracking', 5), ('hamm', 3), ('disproven', 1), ('retry', 1), ('seekers', 3), ('itunes', 2), ('ducharme', 1), ('markered', 2), ('deter', 3), ('gossip', 2), ('gorge', 2), ('sparkly', 1), ('geode', 2), ('innocuous', 2), ('sneaky', 4), ('newscast', 3), ('confidant', 3), ('merritt', 1), ('midgets', 1), ('deng', 2), ('xiaoping', 2), ('kelsea', 1), ('ballerini', 1), ('timelapses', 1), ('bice', 1), ('calendar', 5), ('traumatize', 2), ('slurp', 1), ('tail', 4), ('dock', 2), ('superrman', 1), ('copyedit', 1), ('lesley', 1), ('kagen', 1), ('freudian', 1), ('lifehouse', 1), ('walkover', 1), ('primal', 2), ('passions', 1), ('mesmerize', 3), ('interactive', 1), ('lightsaber', 2), ('thatcher', 1), ('utter', 10), ('foolishness', 1), ('hallmarks', 1), ('heck', 3), ('plastics', 1), ('cbo', 2), ('chipper', 3), ('zappos', 1), ('gopro', 1), ('cheerleaders', 1), ('teammate', 3), ('explosions', 4), ('politwoops', 1), ('cleric', 2), ('acquit', 3), ('omnigrain', 1), ('cheerios', 1), ('marlboro', 2), ('sinus', 2), ('pedal', 1), ('crane', 4), ('recant', 1), ('juan', 3), ('janitors', 1), ('crucify', 1), ('mildew', 1), ('hypocrisies', 1), ('compassionate', 2), ('slate', 4), ('randy', 2), ('deadpool', 3), ('telemedicine', 2), ('ohh', 1), ('undecided', 8), ('seventh', 9), ('sederer', 1), ('matador', 1), ('cape', 3), ('bullring', 1), ('vaporize', 1), ('resurrect', 2), ('malnutrition', 1), ('strangulation', 2), ('turret', 2), ('gunner', 1), ('blacklist', 3), ('pollster', 3), ('typically', 1), ('malaysian', 2), ('petronas', 1), ('skybridge', 1), ('implicate', 3), ('robbers', 4), ('bart', 1), ('retro', 5), ('motive', 2), ('nemtsov', 1), ('jahlil', 1), ('okafor', 1), ('freshener', 3), ('entrepreneurs', 3), ('newfound', 1), ('duchovny', 1), ('miniseries', 1), ('enrollees', 1), ('nerdy', 2), ('gutsy', 1), ('strive', 1), ('sweatshops', 3), ('belgian', 2), ('calmly', 1), ('evictions', 1), ('harvest', 2), ('flourish', 3), ('correspondence', 1), ('daemon', 1), ('legislate', 2), ('tow', 2), ('transformer', 1), ('regal', 2), ('turnkey', 1), ('tai', 4), ('chi', 4), ('cellulite', 2), ('ruben', 1), ('studdard', 1), ('waft', 1), ('grenade', 3), ('tailor', 4), ('generic', 5), ('settings', 2), ('convenient', 3), ('atom', 3), ('resolute', 1), ('roost', 1), ('tel', 1), ('aviv', 1), ('shingle', 3), ('ghraib', 1), ('checkpoint', 1), ('hud', 1), ('arrows', 1), ('hypothesize', 1), ('recreational', 2), ('thirds', 1), ('summa', 1), ('laude', 1), ('distinction', 2), ('syrupy', 1), ('gchatting', 1), ('dressbarn', 1), ('sluts', 1), ('chico', 1), ('nauseous', 2), ('buick', 3), ('birdseed', 1), ('unrealistic', 3), ('multifaceted', 1), ('organisms', 1), ('kerfuffle', 1), ('poets', 1), ('bloodfest', 1), ('oxygen', 3), ('ugh', 3), ('cellar', 2), ('workshop', 1), ('apologies', 3), ('spores', 1), ('developer', 1), ('scholly', 1), ('cto', 1), ('pirollo', 1), ('tinderbox', 1), ('statehouse', 2), ('lipstick', 4), ('harington', 3), ('wigs', 2), ('ledecky', 2), ('sensation', 5), ('shepherd', 1), ('bloomsday', 1), ('doorstop', 1), ('nw', 1), ('sommelier', 1), ('manifest', 2), ('hijabista', 1), ('burqa', 1), ('stave', 1), ('overdo', 1), ('barcelona', 1), ('illegitimate', 1), ('attribute', 3), ('roske', 1), ('exclude', 3), ('janelle', 2), ('hbcus', 2), ('plight', 3), ('mapplethorpe', 2), ('frogmen', 1), ('hardwork', 1), ('vortex', 5), ('pending', 3), ('mofo', 1), ('wikipedia', 5), ('roundabouts', 1), ('haphazardly', 1), ('promotional', 3), ('unsolved', 1), ('tupac', 3), ('butler', 1), ('mathew', 1), ('reconfirmation', 1), ('spank', 4), ('strand', 5), ('boars', 1), ('superheroes', 4), ('huang', 1), ('obnoxious', 5), ('farmland', 1), ('murkowski', 1), ('lsd', 1), ('zoologists', 4), ('neurology', 1), ('escalation', 2), ('lava', 2), ('mistress', 1), ('ratner', 4), ('giggle', 2), ('rebrands', 1), ('disappointimals', 1), ('inaccuracies', 1), ('auditors', 1), ('defund', 4), ('clint', 2), ('eastwood', 1), ('airtight', 1), ('misconceptions', 2), ('hebrew', 2), ('chippewa', 2), ('knocker', 1), ('asteroid', 1), ('grande', 9), ('technical', 1), ('obi', 1), ('wan', 1), ('kenobi', 1), ('chalk', 1), ('ambitious', 6), ('suppress', 2), ('murrieta', 1), ('visitor', 6), ('taxidermied', 1), ('diver', 2), ('scallop', 2), ('zapper', 1), ('bts', 5), ('sullivan', 1), ('boon', 1), ('searchlight', 1), ('ringer', 1), ('renowned', 2), ('ornithologist', 2), ('steroids', 3), ('rory', 3), ('teaser', 9), ('fighters', 3), ('noteworthy', 1), ('dale', 3), ('chihuly', 1), ('plagiarize', 1), ('inadequate', 2), ('madeline', 1), ('intercourse', 2), ('pornhub', 3), ('multiplex', 1), ('lush', 1), ('bloodbombs', 1), ('enrollment', 4), ('restaurateur', 1), ('squatters', 1), ('granddaughters', 1), ('soliders', 1), ('siri', 4), ('ssris', 1), ('financially', 6), ('pagos', 2), ('municipality', 1), ('yeezy', 1), ('vil', 1), ('bookshelf', 1), ('himalayas', 1), ('glaciers', 3), ('earbuds', 2), ('cheesesteak', 1), ('hubbard', 1), ('scientologist', 1), ('dreamworks', 1), ('skg', 1), ('tutus', 1), ('sequins', 1), ('equivalency', 1), ('temperature', 4), ('floral', 1), ('detour', 1), ('ariel', 2), ('physicians', 1), ('restoration', 3), ('khrushchev', 1), ('granddaughter', 2), ('archdiocese', 2), ('ferrante', 1), ('guardian', 2), ('certify', 3), ('suppliers', 1), ('masquerade', 1), ('superstar', 5), ('finals', 4), ('blaine', 3), ('endurance', 3), ('adorably', 6), ('ja', 2), ('vu', 2), ('competent', 4), ('awfully', 1), ('unrepresentative', 1), ('exclamation', 2), ('chechen', 3), ('overflow', 1), ('unnecessary', 3), ('mediator', 1), ('afro', 4), ('textured', 1), ('nappy', 1), ('perminators', 1), ('gabriel', 2), ('precarious', 1), ('intellectuals', 1), ('zendaya', 1), ('loc', 2), ('barbie', 3), ('upbraid', 1), ('scoff', 1), ('glamour', 2), ('egregious', 1), ('philando', 3), ('castile', 3), ('ubs', 1), ('fabled', 2), ('solstice', 2), ('foggy', 1), ('astana', 1), ('obstacles', 3), ('slogans', 4), ('terrific', 1), ('aubrey', 1), ('tab', 1), ('sumptuous', 2), ('leisure', 1), ('antisocial', 1), ('vary', 2), ('groovin', 1), ('doobie', 2), ('lyricist', 1), ('barlow', 1), ('semen', 3), ('underage', 3), ('biracial', 1), ('negate', 1), ('flirty', 1), ('continuity', 1), ('barborak', 1), ('lerner', 1), ('hygiene', 2), ('strategic', 4), ('differentiator', 1), ('poehler', 3), ('mantra', 1), ('dubious', 2), ('evancho', 1), ('pyer', 1), ('moss', 2), ('lace', 3), ('apnea', 1), ('astrological', 1), ('bowe', 2), ('recapture', 1), ('iceland', 3), ('populists', 1), ('wagnerism', 1), ('macon', 1), ('asparagus', 1), ('contend', 2), ('achievements', 1), ('midwesterners', 1), ('motorize', 2), ('alcoholics', 1), ('fratricide', 1), ('nationally', 1), ('murph', 1), ('rosetta', 2), ('curators', 3), ('gogh', 1), ('ovarian', 1), ('ko', 1), ('epitome', 2), ('reincarnate', 1), ('erratic', 1), ('impulses', 3), ('gyno', 1), ('raspberry', 2), ('birtherism', 1), ('frankenstein', 2), ('dreamily', 1), ('embezzlement', 2), ('scandinavia', 1), ('pta', 2), ('chinaware', 1), ('rebuke', 5), ('indecent', 1), ('mitzvah', 2), ('mire', 1), ('coupon', 3), ('establishments', 1), ('unlawfully', 1), ('jfk', 6), ('typecast', 2), ('economist', 1), ('crumb', 4), ('therapists', 3), ('brownribboncampaign', 1), ('laden', 1), ('bellwether', 1), ('hoosier', 1), ('groundskeeper', 1), ('donations', 7), ('widely', 3), ('circulate', 1), ('millie', 1), ('gentleman', 2), ('caller', 5), ('jiffy', 2), ('overfunded', 1), ('eccentricities', 1), ('disingenuous', 1), ('lorna', 1), ('meditations', 1), ('blackness', 1), ('olbermann', 1), ('grabber', 1), ('diversify', 1), ('peanut', 6), ('cypriots', 1), ('dilapidate', 2), ('monastery', 1), ('adequately', 2), ('winslet', 2), ('coon', 1), ('lovestruck', 1), ('arabian', 3), ('regressive', 2), ('greats', 1), ('discourse', 2), ('pastry', 4), ('cinnabontography', 1), ('sidney', 1), ('appraise', 1), ('overemphasize', 1), ('conclusions', 2), ('ivory', 8), ('woodpecker', 2), ('goonies', 1), ('purr', 1), ('menstruate', 3), ('chobani', 1), ('jetpack', 1), ('playable', 1), ('phish', 3), ('adventurous', 2), ('cryptically', 1), ('orangutan', 2), ('underscore', 2), ('rites', 1), ('sizzle', 4), ('fajita', 1), ('spade', 1), ('rooftop', 4), ('bomer', 4), ('dislocate', 1), ('comforter', 1), ('unzip', 1), ('tweetstorm', 1), ('lionel', 3), ('messi', 2), ('bahamas', 2), ('invisibility', 1), ('graciously', 2), ('vehemently', 3), ('heartstrings', 1), ('madd', 1), ('psa', 6), ('privately', 4), ('grieco', 1), ('inadvertently', 6), ('faintly', 1), ('audible', 2), ('bereavement', 3), ('reelection', 4), ('relative', 2), ('adoptee', 1), ('racialized', 1), ('addcandytoamovie', 1), ('switzerland', 3), ('geffen', 1), ('playhouse', 1), ('ebooks', 1), ('crisp', 1), ('dapperly', 1), ('kiyoko', 1), ('alcoholic', 9), ('poultry', 2), ('hardly', 2), ('adrift', 2), ('bendy', 2), ('benton', 1), ('inherently', 1), ('halfheartedly', 1), ('esports', 1), ('peds', 1), ('shittiest', 1), ('truckers', 1), ('criers', 1), ('jamal', 2), ('polanski', 1), ('controversies', 1), ('hurtful', 2), ('suction', 1), ('chandelier', 1), ('boundaries', 4), ('prohibition', 1), ('heartland', 1), ('fatherhood', 2), ('intersection', 2), ('bogus', 3), ('unlovable', 1), ('relations', 11), ('technophile', 1), ('ortiz', 1), ('introspection', 1), ('sharpen', 1), ('cautionary', 1), ('freemasons', 1), ('cellphone', 2), ('purchaser', 1), ('crucifixion', 2), ('zsa', 2), ('gabor', 1), ('blameless', 1), ('maybelline', 2), ('injectable', 1), ('mighty', 2), ('ripper', 1), ('jitterbug', 1), ('naughty', 3), ('baker', 2), ('killin', 1), ('disinterest', 1), ('pekingese', 1), ('windfall', 2), ('weeklong', 1), ('conclusion', 2), ('devotion', 2), ('blur', 3), ('bellissima', 1), ('flonase', 1), ('wilde', 3), ('facilities', 2), ('immorality', 1), ('hangin', 1), ('tunisian', 1), ('azores', 1), ('destination', 3), ('mcconaughey', 5), ('profanity', 2), ('thewrap', 1), ('swell', 7), ('spout', 1), ('breeders', 1), ('mastiffeagle', 1), ('sandboxes', 1), ('posit', 4), ('inhabit', 1), ('beatty', 1), ('consolidate', 3), ('zz', 1), ('theories', 5), ('megaphone', 1), ('informative', 1), ('seminar', 2), ('stump', 4), ('preside', 2), ('landon', 1), ('unasked', 1), ('unsee', 1), ('unpunished', 1), ('winnings', 3), ('fraudulent', 1), ('bartenders', 3), ('nbd', 1), ('bestow', 2), ('nj', 1), ('brazenly', 1), ('charla', 1), ('hackathons', 1), ('schweitzer', 1), ('pele', 1), ('painters', 1), ('cassoulet', 1), ('rembrandt', 1), ('leo', 3), ('gugu', 1), ('spouses', 1), ('kardashians', 5), ('loudspeaker', 1), ('holdout', 1), ('circuit', 3), ('martens', 1), ('synagogue', 5), ('janis', 1), ('joplin', 2), ('revisit', 7), ('trainspotting', 1), ('spectacular', 5), ('councilwomen', 1), ('format', 2), ('stationary', 1), ('midway', 1), ('plunder', 1), ('turks', 1), ('spectrum', 6), ('dumbfound', 1), ('indecision', 1), ('cram', 2), ('maw', 1), ('stanford', 4), ('gardner', 2), ('bipartisanship', 2), ('pitifully', 1), ('pizzagate', 1), ('hoax', 5), ('fireflies', 2), ('salvage', 3), ('hogwarts', 1), ('irl', 2), ('fork', 2), ('teri', 1), ('hatcher', 1), ('axl', 1), ('vocal', 3), ('detractors', 2), ('jewelry', 7), ('polyamorous', 1), ('triad', 1), ('supermax', 1), ('bff', 1), ('equivalent', 1), ('orphanage', 2), ('buzzword', 2), ('confirmations', 1), ('yankee', 3), ('despacito', 2), ('translation', 2), ('izzo', 1), ('spartans', 1), ('cheyenne', 1), ('rooftops', 1), ('disagreements', 2), ('interracial', 2), ('pixies', 2), ('tense', 7), ('staunch', 2), ('enquirer', 2), ('haim', 1), ('prayforpaulgeorge', 1), ('overrate', 2), ('locator', 1), ('kemper', 1), ('caustic', 1), ('darfur', 4), ('monteith', 2), ('posthumous', 4), ('surfboard', 1), ('wkzn', 1), ('medium', 1), ('seinfeld', 3), ('lemonade', 2), ('numbness', 1), ('freestyles', 1), ('slo', 1), ('mortar', 3), ('chafee', 1), ('conspiracies', 1), ('diagram', 4), ('macaulay', 1), ('culkin', 1), ('anarchists', 1), ('cafeteria', 2), ('outcomes', 2), ('celine', 3), ('dion', 3), ('intercontinental', 2), ('riverwalk', 1), ('cyberspace', 1), ('kurrencykook', 1), ('disapprove', 2), ('containers', 4), ('sofia', 1), ('cameo', 3), ('sis', 1), ('universities', 6), ('sanctuaries', 1), ('presumptive', 3), ('tardy', 1), ('texting', 3), ('plummer', 2), ('feign', 2), ('ping', 3), ('tobolowsky', 1), ('entrust', 3), ('anonymously', 2), ('sacramento', 3), ('geodes', 1), ('females', 1), ('sensitivity', 2), ('fax', 1), ('finest', 3), ('lou', 3), ('reed', 4), ('cond', 2), ('nast', 2), ('usc', 3), ('lori', 2), ('loughlin', 2), ('prophecy', 1), ('manipulate', 3), ('commandment', 1), ('quieter', 1), ('performances', 2), ('lingerie', 5), ('hofner', 1), ('resuscitate', 2), ('houseplant', 1), ('ctrl', 1), ('amc', 2), ('rollercoaster', 1), ('rescuer', 2), ('oily', 2), ('pelicans', 1), ('mercifully', 2), ('batch', 2), ('socal', 2), ('heist', 4), ('dumbest', 4), ('ipod', 5), ('oven', 2), ('preheat', 1), ('creampuff', 1), ('airwaves', 1), ('crackle', 1), ('geddy', 1), ('equip', 1), ('mandibles', 1), ('cupcake', 3), ('uighur', 2), ('naawp', 1), ('linen', 1), ('cliffhanger', 2), ('abe', 1), ('undernutrition', 1), ('donaldson', 1), ('kamau', 1), ('chime', 3), ('basement', 3), ('somethings', 2), ('decadent', 2), ('quiznos', 1), ('watkins', 2), ('flout', 1), ('nda', 1), ('cultivate', 3), ('dukes', 1), ('hazzard', 1), ('kitsch', 5), ('mcdougal', 1), ('indulgent', 1), ('absence', 11), ('comfy', 2), ('bullets', 7), ('trumpismo', 1), ('fascism', 4), ('jillian', 1), ('fag', 1), ('distribute', 2), ('classiest', 1), ('absolute', 4), ('mres', 1), ('duchess', 5), ('flank', 1), ('pharaoh', 2), ('nevertheless', 1), ('persist', 2), ('autonomy', 2), ('bro', 2), ('funkier', 1), ('selfish', 3), ('supplant', 1), ('obscenity', 1), ('chamomile', 1), ('motto', 1), ('anesthetize', 1), ('outbursts', 1), ('fab', 3), ('hopeless', 2), ('slob', 1), ('authorization', 1), ('flunk', 1), ('geography', 3), ('poland', 3), ('decompose', 1), ('mollusks', 1), ('ladenschlussgesetz', 1), ('minneapolis', 4), ('jamar', 1), ('basset', 1), ('nerds', 3), ('statehood', 2), ('caduceus', 1), ('indicate', 3), ('fingerless', 1), ('latex', 2), ('hospitalization', 4), ('synonyms', 1), ('dunkin', 6), ('narco', 2), ('surplus', 1), ('sunrise', 2), ('vienna', 3), ('blogosphere', 1), ('suburbanite', 2), ('janice', 3), ('salma', 2), ('hayek', 2), ('frontrunner', 3), ('respectful', 1), ('vague', 4), ('involvement', 2), ('foulest', 1), ('hardball', 1), ('radicalization', 2), ('kathleen', 1), ('hartnett', 1), ('resent', 3), ('siren', 1), ('fallacy', 1), ('officiants', 1), ('primer', 3), ('chaplaincy', 1), ('heinz', 3), ('packet', 1), ('lightning', 3), ('contestant', 2), ('smalltalk', 1), ('pistol', 2), ('gangsta', 2), ('sandler', 3), ('nuanced', 1), ('duggar', 3), ('bulimia', 1), ('shaky', 4), ('overly', 4), ('nhs', 1), ('abysmal', 1), ('preparation', 6), ('oasis', 4), ('nonexistent', 1), ('vidcon', 1), ('tley', 1), ('conditioner', 3), ('havana', 3), ('lanterns', 1), ('etheridge', 1), ('wallem', 1), ('ava', 5), ('duvernay', 5), ('realization', 5), ('frankie', 2), ('chord', 1), ('strenlow', 1), ('dander', 1), ('typography', 1), ('disclosure', 3), ('equivalence', 1), ('blankenship', 2), ('strawberry', 1), ('blondes', 1), ('vengeance', 2), ('shondaland', 1), ('hardwood', 1), ('inventions', 2), ('arcade', 1), ('iver', 1), ('supergroup', 2), ('broward', 1), ('dvds', 1), ('functional', 3), ('hew', 1), ('uninvestigated', 1), ('accomplishments', 3), ('budapest', 1), ('soros', 1), ('deporters', 1), ('pond', 2), ('serene', 1), ('stupendous', 1), ('buglers', 1), ('billionnaire', 1), ('bourbon', 1), ('awhile', 3), ('corbett', 1), ('handsy', 2), ('regenerate', 1), ('rawlings', 1), ('dumbed', 1), ('soloway', 1), ('dramatically', 2), ('enlistment', 1), ('oaths', 2), ('geist', 1), ('fer', 1), ('brotherly', 1), ('divorc', 1), ('concoction', 1), ('masturbator', 2), ('hypothetical', 4), ('riverboat', 1), ('horseracing', 1), ('utterly', 3), ('rubenesque', 1), ('picassoesque', 1), ('rationality', 1), ('clamp', 1), ('aarp', 5), ('booths', 3), ('cologne', 3), ('emily', 5), ('fireeye', 1), ('farmlands', 1), ('enema', 1), ('orientation', 2), ('backroom', 1), ('trumpzilla', 1), ('snowflake', 3), ('perhaps', 3), ('pilgrims', 1), ('dedication', 2), ('vaginal', 3), ('sealant', 2), ('mohandas', 1), ('gandhi', 2), ('abominable', 1), ('amputee', 4), ('misbehavior', 1), ('anarchy', 3), ('dol', 1), ('lightsabers', 2), ('trailblazing', 3), ('seamlessly', 3), ('sinful', 1), ('luftwaffle', 1), ('superiority', 1), ('implode', 2), ('mumbai', 2), ('dirtiest', 1), ('assess', 1), ('supermodels', 1), ('tester', 2), ('plutocratic', 1), ('freakish', 1), ('nixonian', 1), ('juxtapose', 1), ('iconography', 1), ('kindly', 1), ('stfu', 1), ('dora', 1), ('canon', 2), ('orbit', 4), ('reflection', 6), ('kurdistan', 1), ('sunscreen', 2), ('triumphantly', 2), ('referendums', 1), ('ought', 2), ('schizophrenic', 2), ('pasties', 1), ('wrestlers', 2), ('summerslam', 1), ('meg', 3), ('whitman', 2), ('mussolini', 2), ('semitism', 6), ('institutional', 3), ('intentions', 2), ('lesser', 1), ('viability', 1), ('geopolitical', 2), ('koechner', 1), ('ineffectual', 1), ('mags', 1), ('gi', 1), ('sufferer', 4), ('fierce', 4), ('alda', 1), ('sag', 1), ('drastically', 2), ('ficus', 2), ('kudrow', 1), ('robinson', 2), ('wyatt', 1), ('watchman', 3), ('clairvoyant', 1), ('vaughn', 1), ('arbus', 1), ('facto', 1), ('jowls', 1), ('eyelid', 1), ('kabat', 1), ('zinn', 2), ('thaler', 1), ('baranski', 1), ('personnel', 4), ('powher', 1), ('sandberg', 3), ('kathryn', 1), ('bigelow', 1), ('directress', 1), ('polluters', 2), ('mealy', 1), ('romano', 1), ('narrate', 2), ('ransack', 2), ('frequent', 1), ('flighter', 1), ('responsibly', 1), ('hassan', 1), ('jameel', 1), ('ska', 1), ('obsessively', 2), ('hazard', 4), ('disbelief', 2), ('incoherent', 1), ('maids', 1), ('wealthier', 3), ('intentional', 2), ('offbeat', 2), ('grandmothers', 1), ('textile', 1), ('ty', 2), ('herndon', 2), ('redwood', 1), ('whcd', 3), ('slangry', 1), ('benevolent', 1), ('possessor', 1), ('fetch', 2), ('daley', 2), ('nepotist', 1), ('scattergories', 1), ('laquan', 5), ('disadvantage', 1), ('fisting', 1), ('enactors', 1), ('purina', 2), ('directives', 1), ('bogetti', 1), ('revisionist', 1), ('houseboat', 1), ('frankly', 2), ('coachella', 5), ('moloch', 1), ('basilica', 4), ('metta', 1), ('emaciate', 1), ('alexander', 5), ('concepts', 3), ('mistreat', 1), ('altoid', 2), ('curiously', 1), ('restructure', 1), ('bluff', 1), ('tundra', 1), ('emptiness', 1), ('nevertrump', 2), ('jacob', 1), ('ulbricht', 1), ('ballet', 6), ('nicest', 1), ('westeros', 1), ('cascade', 2), ('ammunition', 2), ('sane', 4), ('gull', 1), ('infidel', 1), ('toffee', 1), ('pong', 2), ('fuss', 2), ('garcia', 4), ('nassar', 8), ('bodyguard', 1), ('overselling', 1), ('illnesses', 4), ('symbolism', 2), ('horcrux', 1), ('render', 3), ('obsolete', 4), ('transylvania', 1), ('basis', 1), ('woodward', 3), ('uptown', 1), ('beggar', 1), ('firewood', 1), ('farewells', 1), ('incorporate', 2), ('insanity', 1), ('buster', 2), ('shroud', 3), ('sonoma', 3), ('epperson', 1), ('unmask', 1), ('blindingly', 1), ('sip', 3), ('congo', 3), ('franzen', 2), ('dahlia', 1), ('precipice', 1), ('goofball', 1), ('roseanne', 4), ('arthamptons', 1), ('appelhof', 1), ('maidstone', 1), ('punks', 1), ('fiasco', 3), ('cartographers', 1), ('idyllic', 2), ('continent', 2), ('sprout', 1), ('wrapper', 1), ('zealot', 1), ('lunatic', 5), ('formaldehyde', 1), ('allegation', 2), ('wiretapped', 1), ('repay', 3), ('deceptive', 2), ('hodor', 1), ('thanos', 1), ('wee', 1), ('nafta', 2), ('listerine', 1), ('undeserved', 1), ('aspirin', 1), ('insurer', 2), ('clarissa', 2), ('wider', 3), ('vanilla', 3), ('custard', 2), ('buns', 3), ('tube', 3), ('fedexed', 1), ('tens', 2), ('snafu', 1), ('orgasm', 3), ('debris', 3), ('mh', 3), ('uncontrollable', 1), ('criteria', 1), ('kylo', 1), ('lengthy', 3), ('nichols', 1), ('uncuffing', 1), ('dempsey', 2), ('cronies', 1), ('saget', 1), ('berserk', 2), ('geographic', 4), ('antelopeater', 1), ('passport', 1), ('descent', 2), ('quota', 2), ('waver', 1), ('priesthood', 1), ('harmless', 3), ('anus', 1), ('aussie', 1), ('pictorial', 1), ('fiscal', 3), ('undiagnosed', 2), ('mouseketeer', 1), ('marque', 1), ('lynche', 1), ('wrongdoing', 2), ('defect', 3), ('vestments', 3), ('futility', 2), ('extenders', 1), ('chicanery', 1), ('violet', 1), ('zambia', 1), ('groan', 1), ('kon', 1), ('tiki', 1), ('rookies', 1), ('contrarian', 2), ('upend', 1), ('consensus', 2), ('microfiber', 1), ('origins', 3), ('chug', 1), ('cephas', 1), ('heather', 2), ('heyer', 1), ('wilmot', 1), ('proviso', 1), ('idlib', 1), ('meek', 3), ('pushups', 1), ('gamer', 4), ('illegally', 2), ('phillips', 2), ('maersk', 1), ('mulligan', 2), ('tar', 1), ('psychiatrists', 3), ('unwatched', 1), ('unblinking', 1), ('expletives', 1), ('gallon', 1), ('sexiness', 1), ('meadows', 1), ('fountains', 1), ('gigabyte', 1), ('latinas', 1), ('unanimous', 1), ('pinchuk', 1), ('mistral', 1), ('warships', 1), ('buyer', 1), ('disinfectant', 1), ('gifs', 2), ('memphis', 4), ('grizzlies', 2), ('thunder', 3), ('wittels', 1), ('temp', 4), ('stingray', 1), ('recoil', 1), ('tarp', 1), ('pcos', 1), ('linebacker', 1), ('gentlemen', 2), ('supervisor', 3), ('cersei', 1), ('gymnasium', 2), ('annoyingly', 1), ('anita', 2), ('snowboarders', 2), ('soulless', 3), ('gild', 1), ('catacombs', 3), ('unearned', 1), ('lids', 1), ('weep', 7), ('plagiarism', 3), ('scully', 2), ('generate', 3), ('impair', 1), ('judgment', 4), ('bacchanalia', 1), ('decaf', 1), ('cirque', 1), ('soleil', 1), ('thimble', 1), ('token', 1), ('unseen', 2), ('frein', 1), ('upham', 1), ('yeager', 1), ('henry', 5), ('rollins', 2), ('laboriously', 1), ('powerpoint', 5), ('burrell', 1), ('vfw', 1), ('greeks', 2), ('cluelessly', 1), ('restrictive', 3), ('innuendo', 1), ('amputees', 1), ('oxford', 7), ('dslr', 2), ('interconnect', 1), ('resourceful', 1), ('cobble', 2), ('annoyances', 1), ('scoot', 1), ('underrepresented', 3), ('wooded', 2), ('faerie', 1), ('equipment', 2), ('classrooms', 1), ('ndez', 1), ('willingly', 2), ('cholesterol', 1), ('zen', 4), ('suri', 3), ('royce', 1), ('fend', 2), ('immediate', 5), ('regional', 4), ('uday', 1), ('nutsack', 1), ('shocker', 1), ('arias', 2), ('monstrously', 1), ('lemmy', 1), ('motorhead', 1), ('starfucker', 1), ('impatient', 3), ('caleb', 1), ('slickers', 1), ('sensory', 3), ('deprivation', 1), ('chesapeake', 1), ('mcclendon', 1), ('baskin', 4), ('robbins', 6), ('tub', 2), ('whip', 7), ('charm', 9), ('leprechaun', 1), ('schlegel', 1), ('hyatt', 1), ('adjectives', 1), ('stein', 5), ('par', 1), ('suade', 1), ('stamos', 2), ('corroboration', 1), ('sellout', 2), ('chihuahua', 1), ('dane', 1), ('endear', 1), ('airspace', 1), ('ish', 1), ('glandular', 1), ('vulgar', 2), ('mosquitoes', 3), ('crazier', 1), ('stalker', 1), ('famine', 1), ('blm', 2), ('garza', 1), ('mobilize', 2), ('indigestion', 1), ('reps', 2), ('publik', 1), ('constructive', 1), ('diplomas', 1), ('playoffs', 2), ('mcdonnell', 2), ('dar', 1), ('colgate', 1), ('grout', 1), ('migrate', 3), ('rebecca', 2), ('sugar', 9), ('whooshsnaps', 1), ('biz', 2), ('suckers', 2), ('courtroom', 4), ('zogby', 2), ('encyclopedia', 3), ('educators', 2), ('comply', 2), ('kermit', 1), ('shaggy', 1), ('battlefield', 1), ('ecstatic', 2), ('karzai', 1), ('smoothly', 3), ('redbox', 2), ('haslam', 1), ('doling', 1), ('monstrous', 1), ('pedestrian', 3), ('gundy', 1), ('posse', 2), ('jesuit', 1), ('paraguay', 1), ('resurgence', 1), ('worm', 2), ('parasite', 1), ('splash', 2), ('unicyclist', 1), ('ecologists', 1), ('geckos', 1), ('rookie', 6), ('nascar', 3), ('indianapolis', 2), ('worrell', 1), ('wikiconstitution', 1), ('blossom', 4), ('leia', 1), ('cookbook', 1), ('pension', 3), ('overseer', 1), ('headaches', 1), ('recline', 2), ('waymo', 1), ('skittle', 3), ('uninhabitable', 1), ('heineken', 1), ('bruegger', 1), ('bagels', 1), ('mytron', 1), ('illuminati', 1), ('overlord', 1), ('soybean', 1), ('masterchef', 1), ('prawn', 1), ('glint', 1), ('sunlight', 2), ('jewel', 2), ('unicorns', 1), ('mystify', 1), ('layout', 2), ('sunni', 1), ('dormant', 1), ('supervolcano', 1), ('underneath', 2), ('relocation', 1), ('ceramic', 1), ('kindergartner', 1), ('homework', 1), ('handmade', 1), ('ashtray', 1), ('shia', 2), ('militiaman', 1), ('lynda', 1), ('heffernan', 1), ('showrunners', 1), ('hummus', 5), ('ritz', 1), ('arrhythmically', 1), ('offspring', 1), ('dicks', 1), ('timey', 1), ('slovenly', 1), ('ringo', 1), ('starr', 4), ('destroyer', 2), ('coastal', 1), ('suzy', 1), ('qs', 1), ('leelah', 3), ('alcorn', 3), ('slat', 3), ('md', 1), ('friendliest', 1), ('deepfake', 1), ('gynecologists', 2), ('iuds', 1), ('backlogged', 2), ('corea', 1), ('communists', 4), ('comical', 1), ('groin', 1), ('bits', 2), ('paranormal', 2), ('phenomena', 1), ('dolezals', 1), ('swizz', 1), ('beatz', 1), ('kehlani', 1), ('senility', 2), ('regretful', 1), ('wabi', 1), ('sabi', 1), ('decor', 2), ('imperfection', 1), ('expiration', 2), ('extendable', 1), ('tailgate', 2), ('helen', 3), ('gurley', 1), ('obituaries', 1), ('morton', 2), ('ballistics', 1), ('coli', 2), ('assassinate', 2), ('tomatoes', 1), ('principles', 6), ('belle', 1), ('jewmerica', 1), ('woo', 4), ('mercury', 2), ('mustache', 2), ('hydrant', 2), ('marilyn', 3), ('minter', 1), ('gunk', 2), ('hd', 1), ('weasel', 2), ('duplicity', 1), ('mend', 2), ('trekkie', 1), ('correspondent', 1), ('mohyeldin', 1), ('epley', 1), ('unspoken', 2), ('lt', 3), ('valencia', 1), ('reductions', 1), ('whichever', 1), ('bonuses', 1), ('baboon', 3), ('breakthroughs', 1), ('pennsylvanian', 1), ('insights', 1), ('ultimatum', 1), ('thrush', 1), ('bling', 4), ('misspell', 3), ('hscc', 1), ('factual', 1), ('assed', 6), ('ingest', 1), ('celeb', 6), ('abbi', 1), ('trumpet', 3), ('unravel', 4), ('fracturer', 1), ('exceptional', 2), ('smasher', 1), ('indispensable', 1), ('fragmenter', 1), ('lifeguarding', 1), ('carcinogenic', 1), ('dermatologists', 2), ('teethmarks', 1), ('eileen', 2), ('battersby', 1), ('gervais', 2), ('minotaurs', 1), ('vampires', 2), ('tijuana', 1), ('unplug', 1), ('glob', 1), ('scamper', 1), ('inkjet', 1), ('dishevel', 2), ('detestable', 1), ('clapton', 2), ('layla', 1), ('hooch', 1), ('touchstone', 1), ('architecturally', 1), ('deteriorate', 3), ('addition', 3), ('trucker', 2), ('cb', 1), ('rely', 6), ('landlines', 1), ('hammersmith', 1), ('mot', 1), ('rhead', 1), ('hardline', 3), ('climber', 1), ('prophet', 4), ('destine', 2), ('annie', 4), ('roseburg', 1), ('teamlogan', 1), ('seduction', 1), ('majestic', 2), ('headhunters', 1), ('ordain', 1), ('excommunication', 2), ('tee', 3), ('milkshake', 2), ('aloha', 1), ('aina', 1), ('barca', 1), ('mongol', 1), ('poise', 5), ('erivo', 2), ('hellerman', 1), ('weavers', 1), ('aloof', 2), ('indifference', 1), ('severus', 1), ('snape', 2), ('popsicle', 2), ('epiphany', 2), ('leash', 1), ('loafers', 1), ('immolation', 1), ('jwoww', 1), ('bane', 1), ('marshal', 2), ('fist', 3), ('foul', 4), ('formation', 3), ('emergencies', 1), ('impregnable', 1), ('misremember', 1), ('obs', 1), ('avenue', 2), ('cam', 5), ('brunt', 2), ('lattes', 1), ('weightlift', 1), ('cicadas', 1), ('hassle', 3), ('mdma', 1), ('pencil', 3), ('banquet', 1), ('divert', 4), ('acnefree', 1), ('property', 1), ('jasmine', 2), ('mayfly', 1), ('necessarily', 1), ('manziel', 1), ('puffer', 1), ('giudice', 1), ('willis', 1), ('tarantino', 4), ('sitcoms', 1), ('eia', 1), ('factories', 1), ('obstructionism', 1), ('davanzo', 1), ('batumi', 1), ('activities', 1), ('malala', 3), ('yousafzai', 1), ('aleutian', 1), ('islands', 7), ('rockford', 1), ('hitless', 1), ('safes', 1), ('zeev', 1), ('aram', 1), ('ants', 4), ('starry', 1), ('gershwin', 1), ('philadelphians', 1), ('boca', 1), ('raton', 1), ('statuettes', 1), ('dowager', 1), ('anthrax', 2), ('pistachios', 2), ('krispie', 1), ('fletch', 1), ('dong', 1), ('anthropomorphic', 1), ('giraffe', 1), ('beachfront', 1), ('romanticize', 1), ('handgun', 1), ('doxing', 1), ('eggers', 2), ('fuckers', 3), ('necessities', 1), ('vodka', 2), ('aquafina', 1), ('scaramucci', 4), ('entente', 1), ('bunker', 2), ('federally', 1), ('wetlands', 1), ('balsam', 1), ('heffern', 1), ('cw', 1), ('backpackers', 1), ('divers', 2), ('circumstances', 2), ('columnist', 5), ('virtue', 2), ('footnote', 1), ('checker', 2), ('skewer', 2), ('iphonefeatures', 1), ('ames', 1), ('cannsas', 1), ('differ', 2), ('interpretations', 1), ('bluth', 1), ('mesquite', 1), ('franchesca', 1), ('judd', 3), ('keanu', 2), ('reeve', 2), ('intimately', 1), ('payoff', 1), ('inshallah', 1), ('supplement', 3), ('cuckold', 1), ('lagerfeld', 3), ('garish', 1), ('sportscenter', 1), ('enchilada', 2), ('jakob', 1), ('songwriter', 3), ('marcellus', 1), ('feudalists', 1), ('unregistered', 1), ('offender', 3), ('wizened', 1), ('sara', 1), ('subside', 2), ('kerr', 1), ('taxonomic', 1), ('insomniacs', 1), ('competitions', 1), ('boutique', 3), ('fatality', 1), ('spruce', 1), ('skim', 3), ('mao', 1), ('visor', 1), ('slush', 2), ('sweets', 1), ('pointers', 1), ('ramarley', 1), ('cutler', 2), ('dystopia', 2), ('unrequited', 1), ('incoherently', 1), ('teleportation', 1), ('printable', 1), ('procrastinators', 1), ('laborer', 2), ('recyclable', 1), ('academic', 1), ('wakeup', 1), ('eminem', 5), ('pliers', 1), ('gloria', 2), ('steinem', 1), ('improbable', 2), ('absolve', 1), ('chattanooga', 3), ('legally', 4), ('nike', 4), ('professionalism', 1), ('traditionally', 1), ('cretinous', 1), ('reprobate', 1), ('milwaukee', 4), ('mantle', 1), ('sabathia', 1), ('bautista', 1), ('cartman', 1), ('boozy', 2), ('madrid', 2), ('kink', 1), ('chit', 1), ('pepperidge', 1), ('milanos', 1), ('penn', 6), ('claritin', 2), ('kristol', 2), ('suzanne', 2), ('pleshette', 1), ('sensors', 2), ('et', 2), ('choppers', 1), ('logical', 2), ('ensnare', 1), ('kiev', 1), ('dasha', 1), ('spiderman', 1), ('pies', 3), ('laud', 2), ('neutral', 2), ('unheard', 2), ('degrade', 1), ('gt', 1), ('treater', 2), ('rickman', 3), ('cranston', 2), ('kosher', 1), ('dixon', 5), ('motown', 3), ('unworkable', 1), ('camaros', 2), ('mustaches', 1), ('anheuser', 1), ('sylvia', 2), ('costliest', 1), ('polygamy', 1), ('memorialize', 1), ('substantial', 3), ('forcefield', 1), ('methane', 4), ('hurtle', 1), ('pinch', 2), ('lander', 3), ('amish', 2), ('rumspringa', 1), ('conversational', 1), ('lamprey', 2), ('jan', 5), ('fabre', 1), ('parasites', 1), ('ab', 1), ('schock', 1), ('scrutinize', 1), ('symptomatic', 1), ('injustices', 1), ('domhnall', 1), ('gleeson', 1), ('hux', 1), ('ascend', 1), ('umbrella', 2), ('honesty', 2), ('bodyguards', 1), ('ancestor', 3), ('deen', 1), ('fenimore', 1), ('symptoms', 5), ('gma', 1), ('philippe', 1), ('courtois', 1), ('jian', 1), ('ghomeshi', 1), ('rightfully', 1), ('chesney', 2), ('novelists', 1), ('monetary', 1), ('strata', 1), ('conform', 3), ('marlin', 1), ('hormonal', 2), ('sodium', 1), ('remorse', 1), ('adon', 1), ('slavin', 1), ('inn', 3), ('mudslinging', 1), ('swagger', 1), ('chokeholds', 1), ('intent', 3), ('spiritually', 1), ('deferments', 1), ('neolithic', 1), ('stonehenge', 2), ('gizmos', 1), ('craftsman', 1), ('starvation', 1), ('pornographic', 2), ('damore', 3), ('zangief', 1), ('disrespectful', 2), ('seyfried', 1), ('motor', 2), ('weave', 1), ('noisily', 1), ('devour', 5), ('grape', 1), ('comedies', 1), ('wilder', 3), ('pryor', 1), ('bailiff', 4), ('uppity', 1), ('guantanamo', 7), ('transmute', 2), ('sioux', 2), ('distress', 2), ('shortages', 1), ('slager', 1), ('grifters', 1), ('groundwork', 1), ('statuette', 1), ('channing', 5), ('tatum', 5), ('saucer', 1), ('darken', 1), ('paddy', 1), ('arise', 1), ('builders', 1), ('filament', 1), ('judaism', 3), ('beep', 2), ('noticeably', 2), ('wallflower', 1), ('effigies', 2), ('evaluation', 1), ('ritalin', 3), ('gummis', 1), ('abridge', 2), ('squeak', 3), ('gerard', 1), ('alessandrini', 1), ('mccabe', 1), ('requirements', 1), ('banner', 7), ('byrd', 1), ('inconceivable', 1), ('unconsciousness', 1), ('anesthesiologist', 1), ('egos', 3), ('physics', 3), ('visionary', 2), ('paychecks', 1), ('dolly', 1), ('parton', 1), ('vaquita', 1), ('porpoise', 1), ('ponder', 2), ('robbin', 1), ('cobb', 1), ('toadstool', 2), ('eighty', 1), ('incorrectly', 3), ('religions', 2), ('foie', 2), ('gras', 2), ('opera', 7), ('ferment', 1), ('cheval', 1), ('blanc', 1), ('twister', 2), ('deliveryman', 1), ('suppers', 1), ('beetlejuice', 1), ('trai', 1), ('byers', 1), ('squash', 3), ('methods', 4), ('employer', 4), ('thankfully', 1), ('tensile', 1), ('offset', 2), ('footprint', 2), ('libel', 1), ('jamaica', 1), ('completion', 2), ('lbd', 1), ('septuplets', 1), ('scumbag', 2), ('milgram', 1), ('enforce', 5), ('jacaranda', 1), ('mastercard', 1), ('evoke', 2), ('casualty', 1), ('caress', 1), ('uma', 2), ('thurman', 2), ('sire', 2), ('homo', 1), ('celbritans', 1), ('separations', 1), ('strangle', 4), ('singular', 1), ('televisa', 1), ('vicente', 1), ('electronica', 1), ('conception', 2), ('fakebook', 1), ('nylon', 1), ('teamwork', 1), ('implication', 1), ('arne', 2), ('duncan', 4), ('umbilical', 1), ('frontrunners', 1), ('slant', 1), ('breuer', 1), ('exhibition', 2), ('percentage', 2), ('robertson', 2), ('vaccination', 2), ('lubitz', 1), ('stigmatize', 1), ('wondrous', 1), ('wurst', 1), ('nuisance', 1), ('nuance', 1), ('plywood', 1), ('microlender', 1), ('spiders', 1), ('kattan', 2), ('shalit', 1), ('overdue', 2), ('garc', 1), ('rquez', 1), ('debtor', 1), ('alderman', 1), ('subwoofer', 1), ('jonben', 1), ('emmett', 1), ('till', 5), ('appropriation', 1), ('disband', 1), ('subhumanity', 1), ('melo', 1), ('genocidal', 1), ('slaver', 1), ('surrogate', 3), ('gabriella', 1), ('shootout', 3), ('undetected', 3), ('rechargeable', 1), ('protagonist', 4), ('abruptly', 4), ('improper', 2), ('conveniently', 1), ('imitation', 1), ('fixin', 1), ('moderators', 3), ('ibm', 2), ('bitterly', 2), ('dominance', 3), ('freedoms', 2), ('freedoming', 1), ('precede', 4), ('nouns', 1), ('downhill', 1), ('wobble', 1), ('redundancy', 1), ('cyborg', 1), ('tortilla', 1), ('lyft', 3), ('xenical', 1), ('propecia', 2), ('paxil', 1), ('drixoral', 1), ('lipitor', 1), ('tavist', 1), ('unfriendly', 1), ('hanger', 1), ('cautiously', 4), ('bedside', 1), ('bloc', 1), ('cilla', 1), ('daytime', 4), ('goers', 2), ('headliner', 1), ('salamanders', 1), ('stances', 4), ('barksdale', 1), ('infertile', 2), ('wizarding', 1), ('diagon', 1), ('alley', 1), ('emit', 2), ('sobriety', 1), ('duckworth', 3), ('psychiatric', 2), ('truthful', 2), ('umpire', 1), ('dotard', 1), ('rocketman', 2), ('bunt', 1), ('slimy', 1), ('webb', 1), ('yolo', 1), ('commence', 1), ('subtext', 1), ('tacos', 1), ('standout', 2), ('beanie', 2), ('cardi', 4), ('pinpoint', 2), ('paulson', 1), ('bureaucratic', 1), ('compilations', 1), ('unisex', 1), ('voris', 1), ('maggie', 1), ('bitsy', 1), ('brainfood', 1), ('plo', 1), ('krippendorf', 1), ('malawi', 1), ('caddy', 2), ('multicolor', 2), ('squid', 1), ('cebu', 1), ('senselessness', 1), ('coy', 1), ('ewww', 1), ('bugnado', 1), ('lumber', 2), ('golem', 1), ('researcher', 2), ('hypothesis', 1), ('wagner', 1), ('mattis', 2), ('congregation', 1), ('fiat', 2), ('chrysler', 3), ('longevity', 3), ('mathematician', 3), ('equation', 1), ('sweaty', 2), ('haugh', 1), ('phony', 2), ('cowbell', 1), ('richrath', 1), ('reo', 1), ('speedwagon', 1), ('compile', 1), ('shortlist', 1), ('transsexual', 1), ('amateur', 1), ('cheerleader', 3), ('revoke', 5), ('chickadee', 1), ('membership', 5), ('dues', 1), ('asexually', 1), ('reproduce', 1), ('sponge', 1), ('gondolier', 2), ('gondola', 1), ('disconnect', 1), ('kowalski', 1), ('hoover', 3), ('toughest', 2), ('grisled', 1), ('charisma', 2), ('rabies', 2), ('philippines', 4), ('flail', 1), ('parliamentary', 2), ('visibility', 3), ('shotguns', 1), ('hanson', 1), ('nambla', 1), ('sentiments', 1), ('bollywood', 4), ('priyanka', 2), ('chopra', 3), ('yalie', 1), ('lad', 1), ('maxx', 1), ('norma', 1), ('figurine', 1), ('nowadays', 1), ('brinkley', 1), ('barneys', 2), ('rosamund', 1), ('ravish', 1), ('laureate', 3), ('flyboy', 1), ('talisman', 1), ('faves', 1), ('dzhokhar', 3), ('tsarnaev', 8), ('mc', 4), ('serch', 1), ('software', 3), ('miniskirt', 2), ('taint', 1), ('chemically', 1), ('reabsorb', 3), ('polarization', 1), ('permanently', 4), ('toke', 1), ('durning', 1), ('hock', 1), ('phlegm', 2), ('carless', 1), ('prematurity', 1), ('randall', 1), ('secede', 1), ('randalia', 1), ('dsl', 1), ('gett', 1), ('viviane', 1), ('amsalem', 1), ('sheepish', 1), ('pounce', 2), ('ecuador', 1), ('unfold', 1), ('gaffer', 1), ('revamp', 2), ('jpso', 1), ('breastfed', 1), ('atmosphere', 3), ('dwindle', 2), ('flandemic', 1), ('insta', 2), ('raciest', 1), ('admiral', 2), ('harward', 1), ('crossword', 1), ('glossip', 1), ('mathematics', 1), ('vogt', 1), ('millisecond', 1), ('raucous', 3), ('jest', 1), ('battleship', 3), ('inhuman', 1), ('reprehensibly', 1), ('onrush', 1), ('drench', 2), ('mics', 1), ('ncaa', 8), ('profiteer', 2), ('cellist', 1), ('classical', 2), ('judys', 1), ('arsons', 1), ('goalposts', 1), ('djimon', 1), ('hounsou', 1), ('planetary', 1), ('serbian', 1), ('dade', 1), ('orphan', 5), ('collusion', 3), ('admin', 1), ('na', 2), ('knack', 1), ('accessible', 6), ('druid', 1), ('repudiate', 2), ('bastille', 1), ('deserter', 1), ('darius', 1), ('rucker', 1), ('gamecocks', 1), ('sparrow', 3), ('carcass', 7), ('rear', 2), ('headset', 2), ('rs', 1), ('regurgitate', 1), ('womb', 1), ('funk', 1), ('airstrikes', 6), ('voluntarily', 3), ('ponds', 1), ('matte', 1), ('sucker', 1), ('ditka', 1), ('hash', 1), ('roudup', 1), ('zee', 1), ('zinfandel', 1), ('beethoven', 2), ('legislator', 2), ('diplomacy', 3), ('malta', 1), ('entries', 1), ('sacagawea', 1), ('lucasfilm', 1), ('changers', 1), ('pegida', 1), ('schneiderman', 2), ('vaccinations', 2), ('lust', 3), ('khamenei', 2), ('silas', 2), ('bedbugs', 1), ('imani', 1), ('boyette', 1), ('vitriol', 1), ('eruption', 1), ('undue', 1), ('statewide', 2), ('epidural', 1), ('provocative', 1), ('inspirational', 4), ('preakness', 1), ('eiffel', 2), ('vanessa', 2), ('marcotte', 1), ('doppelg', 2), ('nger', 2), ('benetton', 1), ('miraculously', 2), ('rubble', 2), ('fa', 1), ('ade', 1), ('gen', 1), ('cynicism', 1), ('illiteracy', 1), ('raytheon', 5), ('mode', 5), ('npt', 1), ('fetishists', 1), ('mooc', 1), ('ponytails', 1), ('outstanding', 2), ('photoshopping', 1), ('traffickers', 2), ('bout', 2), ('cattrall', 3), ('oilfields', 1), ('pueblo', 3), ('appetite', 2), ('earthenware', 1), ('levi', 3), ('truce', 2), ('kirby', 1), ('retaliate', 1), ('reenergize', 1), ('hunks', 1), ('cadbury', 2), ('creme', 2), ('milkshakes', 1), ('sneakiest', 1), ('eurostar', 1), ('cynical', 2), ('sailboat', 1), ('ewok', 1), ('sisterhood', 1), ('wgn', 1), ('fuzzy', 3), ('drywall', 1), ('daraya', 2), ('sza', 1), ('supergirl', 1), ('misogynistic', 1), ('heady', 2), ('grecian', 2), ('inclusions', 1), ('credibility', 2), ('brits', 1), ('appeaser', 1), ('billboards', 1), ('panasonic', 1), ('disc', 3), ('educational', 2), ('nah', 1), ('sustainably', 1), ('narcicyst', 1), ('inclusivity', 1), ('snapshots', 1), ('deed', 1), ('outpace', 2), ('fanatics', 2), ('preorders', 1), ('snazzy', 1), ('feline', 1), ('nightgown', 1), ('banish', 2), ('wrongfully', 1), ('mylanta', 1), ('tpp', 6), ('residence', 4), ('doorway', 2), ('derive', 3), ('gorka', 1), ('fleshlighthouse', 1), ('texture', 1), ('morality', 2), ('greenbuild', 1), ('hearken', 1), ('fernandez', 1), ('chenoweth', 1), ('estefan', 1), ('webber', 1), ('mcgorry', 1), ('nipsey', 1), ('couplets', 1), ('reactors', 1), ('botanists', 3), ('botany', 1), ('truthers', 1), ('octopussy', 1), ('jourdan', 1), ('loophole', 3), ('gonzalez', 1), ('reminisce', 2), ('kielbasa', 1), ('ingrain', 1), ('corrupt', 4), ('sidetrack', 1), ('tapas', 2), ('rhea', 1), ('maceris', 1), ('skyline', 1), ('katehi', 1), ('hasan', 1), ('minhaj', 1), ('roil', 2), ('subjective', 1), ('patriotism', 2), ('senile', 2), ('lobsters', 2), ('frapp', 1), ('invocations', 1), ('hammerhead', 1), ('bulb', 3), ('axe', 3), ('craziest', 1), ('rosalynn', 1), ('hoverboard', 2), ('couric', 4), ('wyoming', 1), ('galecki', 1), ('sorrow', 2), ('beverly', 2), ('whipple', 1), ('dalit', 1), ('abcs', 1), ('auctioneer', 2), ('ballplayers', 1), ('rolex', 1), ('hollande', 1), ('valls', 1), ('probation', 2), ('misdemeanors', 1), ('skier', 3), ('softener', 1), ('banners', 2), ('dominion', 1), ('obligate', 1), ('aly', 4), ('raisman', 4), ('leotards', 1), ('sociable', 1), ('joyfully', 1), ('putty', 1), ('posterity', 2), ('scotch', 2), ('overstay', 1), ('dollhouse', 1), ('gump', 2), ('ordeal', 3), ('hairdo', 1), ('politely', 2), ('darger', 1), ('groundhog', 2), ('deign', 1), ('mobility', 3), ('wuhl', 1), ('pollack', 1), ('entity', 1), ('sodomy', 1), ('infertility', 1), ('savannah', 1), ('guthrie', 1), ('conair', 1), ('kasparov', 2), ('rezzed', 1), ('typo', 3), ('getaways', 2), ('clients', 2), ('squirt', 1), ('redundant', 1), ('profumi', 1), ('di', 2), ('firenze', 2), ('polio', 3), ('lustful', 1), ('sensually', 1), ('unhook', 1), ('clasp', 1), ('ineptly', 1), ('danica', 1), ('roem', 1), ('fairey', 1), ('blatantly', 1), ('demagogue', 1), ('outgo', 1), ('hhs', 4), ('williamson', 2), ('cleat', 1), ('blackhawk', 1), ('referee', 3), ('andie', 1), ('macdowell', 1), ('hamsters', 2), ('applebee', 5), ('asses', 2), ('ashleigh', 1), ('banfield', 1), ('circumcise', 2), ('mozambique', 3), ('fergie', 1), ('enslave', 1), ('paunch', 1), ('skywalker', 2), ('alphabetically', 1), ('committers', 1), ('gisele', 3), ('bundchen', 2), ('exonerate', 5), ('normalcy', 2), ('synchronize', 1), ('disco', 1), ('transcendent', 2), ('appreciate', 3), ('coziest', 1), ('fashionably', 1), ('forebode', 1), ('entrees', 1), ('uterine', 1), ('significance', 2), ('closely', 2), ('grimmie', 1), ('carjackers', 1), ('backseat', 2), ('coms', 1), ('pinocchio', 1), ('maxwell', 1), ('sridevi', 1), ('unpledged', 1), ('bugle', 2), ('jeffrey', 3), ('insignia', 1), ('omg', 3), ('fresco', 1), ('niece', 3), ('naturalize', 1), ('outages', 1), ('miscarriage', 2), ('accusingly', 1), ('conundrum', 2), ('android', 1), ('forearm', 1), ('circuitry', 1), ('eccentric', 3), ('colonel', 1), ('blazer', 1), ('canvass', 2), ('energi', 1), ('dosage', 1), ('acetaminophen', 2), ('pelt', 1), ('unannounced', 1), ('mentalist', 1), ('coo', 1), ('oversize', 2), ('sociologists', 1), ('emergence', 2), ('internment', 5), ('barker', 2), ('pretzel', 3), ('wilds', 3), ('hardier', 1), ('litigation', 1), ('mason', 4), ('ihop', 7), ('zebra', 1), ('signify', 1), ('barron', 2), ('sprint', 4), ('shellie', 1), ('saffron', 1), ('persona', 4), ('ridiculousexcusestostayhome', 1), ('undesignated', 1), ('bellhop', 1), ('assign', 5), ('freshwater', 1), ('slugger', 2), ('deadlier', 1), ('elsewhere', 4), ('mourners', 5), ('vigils', 1), ('jaskoviak', 1), ('pornstar', 1), ('stepmother', 1), ('yowl', 1), ('kiwi', 1), ('cliven', 1), ('turners', 1), ('stubborn', 1), ('baklava', 1), ('poopgangsta', 1), ('ashraf', 1), ('ghani', 1), ('feelthebern', 1), ('sunmine', 1), ('travolta', 2), ('skilled', 2), ('sotheby', 2), ('itch', 2), ('butch', 2), ('playboy', 4), ('monroe', 2), ('headstone', 1), ('newshour', 1), ('potty', 2), ('thinkable', 1), ('fixer', 1), ('freyda', 1), ('deeds', 1), ('roma', 1), ('unwilling', 2), ('skydive', 2), ('nothingness', 1), ('muffins', 1), ('lobe', 1), ('hem', 1), ('torturous', 1), ('prosecutorial', 1), ('resurrection', 3), ('landrieu', 1), ('scalpels', 1), ('ibtihaj', 2), ('recoup', 1), ('amongst', 1), ('peruse', 1), ('ineffectually', 1), ('ledge', 2), ('obligation', 2), ('awesomely', 1), ('rigorous', 2), ('aviva', 1), ('nepotism', 3), ('synergy', 2), ('metrosexuality', 1), ('fluster', 2), ('hardwired', 1), ('batboy', 1), ('newsom', 1), ('fundamentalist', 2), ('degas', 1), ('mohammed', 3), ('satisfaction', 1), ('extramarital', 1), ('cautious', 3), ('eligible', 1), ('gumbel', 1), ('bounty', 4), ('medicruelty', 1), ('intricacies', 1), ('vandross', 1), ('hb', 4), ('ballsy', 1), ('shiite', 1), ('sharpest', 1), ('lenient', 1), ('cheeseburgers', 1), ('cabaret', 3), ('handwritten', 2), ('arrieta', 1), ('sherpas', 1), ('socialism', 2), ('cardiomyopathy', 1), ('federation', 1), ('uterus', 1), ('priscilla', 2), ('presley', 1), ('spinster', 2), ('latinx', 1), ('showcase', 2), ('abysmally', 1), ('materialism', 1), ('prabal', 1), ('gurung', 1), ('shuttle', 5), ('earthlike', 1), ('malleable', 1), ('simpletons', 1), ('flutter', 2), ('shuttlecock', 2), ('sprinter', 1), ('adria', 1), ('cimino', 1), ('jabba', 1), ('hutt', 1), ('underpants', 1), ('mast', 1), ('void', 3), ('tolerant', 1), ('anaheim', 1), ('welter', 2), ('hawkeye', 1), ('procession', 1), ('richards', 1), ('electro', 1), ('undeterred', 1), ('peruvian', 1), ('knowledgeable', 1), ('pew', 2), ('sewers', 1), ('seasonally', 2), ('mixxxx', 1), ('unpatriotic', 2), ('squi', 1), ('bret', 1), ('baier', 1), ('hots', 1), ('obstructionist', 1), ('subsidize', 2), ('surinamese', 2), ('scifi', 1), ('encyclopedic', 1), ('handsomely', 1), ('rockefeller', 1), ('emptier', 1), ('standby', 2), ('upsides', 1), ('piketty', 1), ('francais', 1), ('childless', 2), ('marketable', 1), ('institutions', 3), ('congeniality', 1), ('atv', 2), ('troglodyte', 1), ('dwell', 4), ('locally', 1), ('wino', 2), ('benadryl', 1), ('dart', 1), ('jetblue', 3), ('unquenchable', 1), ('paine', 1), ('neocons', 1), ('brink', 1), ('lebowski', 2), ('everytown', 1), ('flex', 1), ('grassroots', 2), ('jumpers', 1), ('grexit', 1), ('informal', 1), ('animosity', 1), ('autocorrect', 1), ('daylong', 1), ('sanatoriums', 1), ('hydropower', 1), ('yogi', 1), ('tormentor', 1), ('haaz', 1), ('sleiman', 1), ('quadruple', 2), ('priority', 2), ('danish', 1), ('lilliputian', 1), ('repellant', 1), ('gerstein', 1), ('poncho', 1), ('bornstein', 2), ('lightyear', 1), ('mania', 1), ('marketer', 2), ('indira', 1), ('fond', 3), ('breweries', 1), ('capsize', 2), ('breed', 4), ('contentedly', 2), ('mooch', 1), ('ophthalmologist', 1), ('badpicturemonday', 1), ('insightful', 1), ('vile', 1), ('rohit', 1), ('varma', 1), ('morbid', 1), ('stapleton', 1), ('baskets', 1), ('timelapse', 1), ('misappropriate', 2), ('zamboni', 3), ('lobsterman', 1), ('assemblyman', 1), ('discontent', 1), ('kitty', 1), ('transmasculine', 1), ('okinawa', 1), ('medics', 2), ('calorie', 2), ('gourd', 1), ('bumpy', 1), ('yearn', 1), ('ruffalo', 3), ('fret', 1), ('heartbreakingly', 2), ('cashew', 1), ('apu', 3), ('verma', 1), ('unseat', 2), ('copyright', 4), ('infringement', 1), ('shakira', 2), ('organizations', 2), ('denzel', 2), ('colorism', 1), ('tingle', 2), ('reconstruction', 1), ('cougars', 1), ('tangle', 1), ('drudge', 1), ('communication', 2), ('overburden', 1), ('thailand', 2), ('rhymezone', 1), ('inflate', 2), ('pajamas', 2), ('prosecution', 2), ('kaley', 1), ('cuoco', 1), ('zion', 1), ('watchdogs', 1), ('wreath', 2), ('cambodia', 1), ('reedsburg', 1), ('commerce', 2), ('framework', 2), ('illegibly', 1), ('shithead', 2), ('episcopalians', 1), ('breadwinner', 1), ('mommies', 1), ('mcommerce', 1), ('shamefaced', 1), ('bandmates', 2), ('weezer', 1), ('cherubs', 1), ('disorient', 2), ('energize', 2), ('basest', 1), ('tabasco', 1), ('centuries', 2), ('cryosleep', 1), ('fuji', 1), ('mains', 1), ('superpowers', 2), ('indivisible', 1), ('unlicensed', 3), ('euphemism', 1), ('handicap', 4), ('underprotective', 1), ('foxx', 1), ('doc', 3), ('impersonation', 2), ('brewers', 2), ('domesticate', 1), ('pathological', 1), ('perps', 1), ('velma', 1), ('ostrich', 3), ('makeshift', 1), ('viewpoint', 1), ('kip', 1), ('ennis', 1), ('zenefits', 1), ('stairwells', 1), ('telemarketer', 1), ('awash', 1), ('gere', 1), ('priceless', 2), ('americana', 2), ('cede', 2), ('optimism', 2), ('regrow', 1), ('waken', 1), ('proctoscope', 1), ('dissenters', 1), ('nationals', 2), ('ventimiglia', 2), ('awardee', 1), ('nic', 1), ('fondest', 1), ('febreze', 1), ('unpleasant', 1), ('summertime', 1), ('disrobe', 1), ('peebles', 1), ('abdomen', 2), ('wilford', 1), ('brimley', 1), ('pimp', 2), ('tringle', 1), ('converse', 2), ('legged', 2), ('thirty', 1), ('coppola', 2), ('godfather', 2), ('preoccupation', 1), ('manner', 2), ('upstate', 1), ('reenergized', 1), ('wallets', 1), ('prepay', 1), ('debit', 1), ('etc', 1), ('justifiable', 1), ('designate', 6), ('anal', 1), ('paintball', 1), ('nite', 1), ('fiona', 4), ('sac', 1), ('plasticware', 1), ('payroll', 1), ('surpass', 1), ('byproducts', 2), ('offline', 1), ('mugger', 1), ('bakula', 2), ('communist', 2), ('interfere', 2), ('lizard', 1), ('bj', 2), ('rk', 2), ('retrospective', 3), ('moma', 2), ('wiig', 5), ('hader', 3), ('pauly', 1), ('renegotiate', 1), ('animation', 2), ('hikers', 2), ('philomena', 1), ('manor', 1), ('unregulated', 1), ('madrassa', 1), ('migraines', 1), ('corrections', 2), ('gallant', 2), ('jumpshot', 1), ('odorless', 1), ('fermilab', 1), ('plunger', 1), ('collapsible', 1), ('caesar', 1), ('portent', 1), ('gnarl', 1), ('overtipper', 1), ('ths', 1), ('hopefully', 3), ('hypnotize', 1), ('puppies', 3), ('quentin', 2), ('erin', 1), ('burnett', 1), ('sweetheart', 1), ('liner', 3), ('deets', 1), ('obliterate', 2), ('herointown', 1), ('sharpie', 1), ('hysterectomy', 1), ('workaholic', 2), ('biology', 1), ('dissect', 1), ('hallucinatory', 1), ('doorbell', 1), ('abort', 3), ('minestrone', 2), ('sabra', 1), ('cedar', 1), ('considerations', 2), ('besties', 2), ('heartless', 3), ('calculation', 1), ('outlook', 1), ('fran', 2), ('drescher', 2), ('screech', 2), ('embodiment', 2), ('exorcise', 1), ('laureates', 2), ('swoon', 1), ('paterno', 3), ('superiors', 1), ('plop', 1), ('stiller', 2), ('zoolander', 1), ('shoo', 2), ('baghdadi', 1), ('breakdancing', 1), ('creflo', 1), ('fatherless', 1), ('emeril', 1), ('bams', 1), ('groupie', 1), ('individuality', 1), ('anchorman', 1), ('chirp', 1), ('ia', 1), ('zaire', 1), ('goodman', 2), ('overprescribe', 1), ('narcotics', 1), ('smithereen', 1), ('predictions', 2), ('gravestones', 1), ('benchmark', 1), ('jody', 1), ('hice', 1), ('dious', 1), ('fiercest', 2), ('kobani', 1), ('valyrian', 1), ('etsy', 2), ('omran', 1), ('daqneesh', 1), ('sustain', 6), ('awry', 1), ('casualwear', 1), ('waterboarded', 1), ('indirectly', 1), ('oats', 2), ('sally', 2), ('yates', 1), ('grandpas', 1), ('politico', 2), ('marvelous', 1), ('cellphones', 1), ('bundle', 2), ('bye', 6), ('clapper', 2), ('compilation', 1), ('lyfe', 1), ('perot', 2), ('hormone', 1), ('servicemembers', 1), ('torment', 2), ('theological', 1), ('seduce', 1), ('blackmail', 1), ('wand', 1), ('superficial', 1), ('uncool', 3), ('gorillas', 1), ('frumpy', 1), ('exorcism', 1), ('suffocate', 2), ('rollback', 1), ('overheat', 2), ('stiles', 1), ('preston', 1), ('mafia', 2), ('factoids', 1), ('diplomat', 3), ('eraserhead', 1), ('jiggle', 1), ('solvers', 2), ('cincinnati', 4), ('leann', 1), ('rim', 3), ('waiver', 1), ('shaft', 1), ('muffuletta', 1), ('noncitizens', 1), ('viall', 1), ('pip', 3), ('amelia', 3), ('earhart', 2), ('iman', 1), ('shumpert', 1), ('exploratory', 2), ('complicit', 2), ('misogynoir', 1), ('kickin', 1), ('requirement', 1), ('artweek', 1), ('hygienist', 2), ('stevie', 4), ('solicitor', 1), ('burwell', 1), ('affirm', 1), ('magpie', 1), ('shiny', 2), ('undertaker', 2), ('atms', 1), ('sweepers', 1), ('conceivable', 2), ('complexity', 1), ('oppress', 3), ('escalators', 1), ('mousy', 1), ('sexpot', 1), ('roach', 2), ('infestation', 1), ('footsteps', 2), ('claude', 1), ('brinegar', 1), ('brianna', 1), ('brochu', 1), ('michaela', 1), ('anonymity', 2), ('desantis', 1), ('whistle', 5), ('weaker', 3), ('basket', 3), ('negotiate', 7), ('heathcliff', 1), ('caricaturist', 1), ('brittle', 1), ('jewess', 1), ('overeat', 2), ('clairs', 1), ('blahs', 2), ('monopolize', 1), ('zaatari', 1), ('ossify', 1), ('nativist', 1), ('ream', 1), ('corduroy', 1), ('trumpers', 1), ('skullfucking', 1), ('asexuals', 1), ('meatball', 2), ('casinos', 1), ('predicament', 2), ('cog', 1), ('logitech', 1), ('typists', 1), ('prioritize', 3), ('squirrels', 1), ('isla', 1), ('unqualified', 2), ('menstrual', 2), ('earphone', 1), ('probiotics', 1), ('prebiotics', 1), ('oswald', 1), ('verse', 3), ('rebate', 2), ('unlabeled', 2), ('etna', 1), ('boardwalk', 1), ('chumps', 1), ('caldwell', 1), ('relatable', 3), ('recorder', 2), ('oscarssowhite', 1), ('modcloth', 1), ('hibernation', 2), ('boilermakers', 1), ('geller', 1), ('zimbabwe', 1), ('katif', 1), ('disengagement', 1), ('fritos', 1), ('chiquita', 1), ('glaxosmithkline', 1), ('chastain', 1), ('paralympic', 1), ('triathlon', 1), ('mores', 2), ('queso', 1), ('nfc', 1), ('doofus', 1), ('weekley', 1), ('agonize', 2), ('postseason', 2), ('gladwell', 1), ('foretell', 1), ('faint', 3), ('wales', 1), ('roofer', 1), ('badmouth', 1), ('driverless', 5), ('conditioners', 1), ('unpauses', 1), ('chores', 2), ('interactions', 2), ('atari', 1), ('sherpa', 1), ('grapple', 2), ('electricity', 3), ('bradbury', 1), ('kindle', 1), ('faucets', 1), ('bassett', 1), ('whitney', 4), ('petticoat', 1), ('trove', 2), ('danishes', 1), ('poundstone', 1), ('houseguest', 4), ('input', 2), ('gargoyle', 1), ('arson', 1), ('lalanne', 1), ('verbal', 3), ('subtitle', 1), ('mondays', 1), ('gimmicky', 1), ('deus', 1), ('machina', 1), ('bonobo', 1), ('interpretation', 4), ('dmv', 2), ('prophecies', 1), ('amorphous', 1), ('indefinable', 1), ('applaud', 4), ('blowhole', 1), ('extroverted', 1), ('sicily', 1), ('naples', 1), ('deviation', 1), ('statistician', 1), ('yorkshire', 1), ('monogrammed', 1), ('snowman', 2), ('favorites', 1), ('degenerate', 2), ('gruff', 1), ('marty', 2), ('downstairs', 2), ('newscasts', 1), ('squawk', 1), ('catchy', 1), ('gregorian', 1), ('misbuttoned', 1), ('disintegrate', 3), ('aegean', 1), ('comet', 1), ('philae', 1), ('leprosy', 2), ('essentially', 2), ('mourdock', 1), ('baywatch', 3), ('bjorn', 1), ('multiples', 1), ('henchmen', 2), ('meetup', 1), ('dire', 3), ('nutcracker', 1), ('ocelot', 1), ('whitefish', 1), ('rican', 3), ('pritzker', 1), ('brainstorm', 3), ('sleepiness', 1), ('monoxide', 3), ('pancakes', 5), ('humpbacked', 1), ('fib', 1), ('lemony', 1), ('snicket', 1), ('wesleyan', 1), ('sarajevo', 1), ('debra', 1), ('forge', 3), ('dokken', 1), ('molotov', 1), ('adhd', 1), ('uh', 3), ('oitnb', 3), ('sinatra', 3), ('uganda', 3), ('exxon', 5), ('mobil', 3), ('cataclysmic', 2), ('emmerich', 1), ('continually', 1), ('nondiscrimination', 1), ('benson', 1), ('lululemon', 1), ('unimpressive', 2), ('insulate', 1), ('stouffer', 2), ('kensington', 1), ('spearmint', 1), ('meanwhile', 1), ('wtf', 2), ('naval', 1), ('chakra', 1), ('sequence', 3), ('fourths', 1), ('evergreen', 1), ('earthly', 1), ('redditors', 1), ('reimagine', 1), ('backyards', 1), ('calvin', 2), ('fresca', 1), ('boxers', 1), ('versa', 1), ('dresser', 3), ('salivate', 1), ('housekeeper', 2), ('sassy', 3), ('triumphant', 2), ('eugenics', 1), ('colton', 1), ('hannah', 4), ('dew', 2), ('hydroponics', 1), ('crawleys', 1), ('collisions', 2), ('obey', 3), ('succulent', 1), ('brotherhood', 1), ('unmarried', 1), ('acoustic', 3), ('strum', 1), ('bracketological', 1), ('examination', 1), ('aykroyds', 1), ('terminally', 2), ('loathe', 1), ('tally', 1), ('recut', 1), ('orioles', 1), ('rockatansky', 1), ('nux', 1), ('paralympian', 1), ('turds', 1), ('chainsaw', 1), ('tammy', 3), ('policewoman', 1), ('stealth', 3), ('houdini', 1), ('iovine', 1), ('sequoia', 1), ('allegories', 1), ('gin', 1), ('timbaland', 1), ('podiatrist', 2), ('relinquish', 1), ('crenna', 1), ('climatologists', 2), ('sydney', 1), ('gerald', 2), ('rinky', 1), ('dink', 1), ('hazmat', 2), ('reliable', 2), ('integrative', 2), ('elvis', 1), ('costello', 1), ('penthouse', 1), ('sterilize', 1), ('dzhokar', 2), ('pujols', 1), ('lions', 1), ('zebras', 1), ('giraffes', 2), ('masse', 1), ('savanna', 1), ('idahoan', 1), ('jennie', 1), ('staircase', 1), ('munster', 1), ('inappropriately', 1), ('deject', 1), ('korra', 1), ('unsurprisingly', 2), ('belligerent', 1), ('melee', 1), ('loiterer', 1), ('runaway', 5), ('embellish', 2), ('eff', 1), ('beacon', 1), ('albanians', 1), ('pod', 2), ('infallibility', 1), ('overture', 1), ('uneven', 1), ('realistically', 1), ('backstage', 3), ('boyband', 1), ('protectionism', 1), ('burtnick', 1), ('cig', 1), ('vapers', 1), ('outset', 1), ('segue', 1), ('horton', 2), ('coolness', 2), ('mixup', 1), ('indicative', 1), ('flock', 3), ('linehan', 1), ('bono', 5), ('libs', 1), ('accuracy', 2), ('offerman', 3), ('morals', 1), ('jaguars', 2), ('boyega', 1), ('misophonia', 1), ('aatish', 1), ('taseer', 1), ('sanskrit', 1), ('clamor', 2), ('aumf', 1), ('humanities', 1), ('freaky', 4), ('feather', 3), ('unheeded', 1), ('troian', 1), ('bellisario', 1), ('rustic', 2), ('introversion', 1), ('lag', 1), ('hobbit', 1), ('sinister', 3), ('tilsen', 1), ('reservation', 1), ('puppets', 1), ('trim', 2), ('undress', 2), ('falwell', 2), ('deans', 1), ('filipino', 3), ('fitbit', 1), ('inactive', 1), ('beekeeping', 1), ('billow', 2), ('handily', 1), ('blink', 1), ('clinical', 2), ('teeny', 2), ('nom', 1), ('duct', 2), ('wellbeing', 2), ('brawny', 3), ('cormac', 1), ('handcar', 1), ('quarterly', 2), ('settlements', 3), ('untold', 2), ('childrens', 1), ('constable', 1), ('eviction', 2), ('gravedigger', 1), ('divergent', 1), ('wipers', 3), ('bulletproof', 1), ('fearful', 4), ('resilient', 3), ('existential', 2), ('manly', 3), ('strom', 1), ('thurmond', 1), ('presenters', 1), ('buncha', 1), ('crunch', 6), ('menopause', 3), ('brine', 1), ('continuously', 1), ('africans', 1), ('stats', 2), ('inflation', 2), ('soapy', 1), ('hotspots', 1), ('commitments', 1), ('whoisdsharp', 1), ('violin', 2), ('foo', 1), ('acquaintances', 3), ('muster', 1), ('stacy', 1), ('ruiz', 1), ('incense', 1), ('ignorant', 1), ('boor', 1), ('creak', 1), ('sharper', 2), ('watertown', 1), ('jurisprudence', 1), ('unfunny', 1), ('palmolive', 1), ('coddle', 3), ('wozniak', 1), ('vcr', 2), ('moneypenny', 1), ('monthlong', 1), ('cosmos', 1), ('ghouta', 1), ('peninsula', 1), ('behave', 2), ('kiosk', 2), ('cornfield', 1), ('attacker', 3), ('sorely', 2), ('evo', 1), ('es', 1), ('outfox', 2), ('exoskeleton', 2), ('brownface', 1), ('wardrobe', 5), ('restorative', 1), ('jobless', 2), ('remnick', 1), ('mork', 1), ('porter', 4), ('grubhub', 1), ('wormhole', 1), ('moneymaking', 1), ('museums', 2), ('artiste', 1), ('moleskine', 1), ('luxurious', 3), ('knobby', 1), ('fours', 1), ('sunderland', 1), ('concoct', 1), ('thoroughly', 2), ('tinker', 1), ('diddy', 1), ('skillingsbolle', 1), ('metlife', 1), ('goodyear', 2), ('implementation', 1), ('advent', 2), ('marseille', 1), ('diamonds', 4), ('charismatic', 1), ('lichen', 1), ('walton', 2), ('peacekeepers', 1), ('bosnia', 1), ('burkina', 1), ('faso', 1), ('ladle', 2), ('equine', 1), ('tweetless', 1), ('nyad', 1), ('doggie', 1), ('ruff', 1), ('dubsmash', 1), ('downgrade', 2), ('ladybug', 1), ('dontcha', 1), ('secretarian', 1), ('receptionists', 1), ('dolce', 1), ('gabbana', 1), ('hijabs', 1), ('abayas', 1), ('cosmic', 3), ('serif', 1), ('bogot', 1), ('sadden', 3), ('blowout', 2), ('preemptively', 3), ('hoard', 1), ('lawful', 1), ('securities', 1), ('tenacity', 1), ('sext', 2), ('alyson', 1), ('bikers', 1), ('cyanide', 2), ('okie', 1), ('crullers', 1), ('islamophobe', 1), ('manhunt', 2), ('indiscriminately', 1), ('vilify', 2), ('evacuees', 1), ('pollsters', 4), ('mercurial', 1), ('beguile', 2), ('constructionist', 2), ('suffrage', 1), ('meteorologists', 2), ('generational', 1), ('bulleted', 1), ('dasani', 1), ('moviepass', 2), ('profitability', 1), ('evansville', 1), ('drummer', 6), ('terri', 4), ('lyne', 2), ('carrington', 2), ('irrelevant', 2), ('warhol', 3), ('chamillionaire', 1), ('toole', 1), ('conscience', 2), ('tremendous', 1), ('mercedes', 2), ('ruehl', 2), ('flashy', 2), ('hearse', 1), ('schulz', 1), ('easel', 1), ('coffman', 1), ('tancredo', 1), ('bait', 3), ('enoch', 1), ('weatherman', 1), ('hub', 1), ('numb', 2), ('yauch', 1), ('tibet', 1), ('rezoned', 1), ('thicks', 1), ('seatmates', 1), ('relabeled', 1), ('offhand', 1), ('deity', 1), ('uninvited', 1), ('iowan', 3), ('blizzards', 1), ('margot', 1), ('unlucky', 1), ('implicit', 1), ('unfazed', 2), ('buscemi', 2), ('tug', 1), ('compton', 2), ('beau', 1), ('slightest', 2), ('mush', 1), ('intrinsic', 1), ('downey', 2), ('despise', 3), ('nightmarish', 2), ('kafka', 1), ('insoles', 1), ('carpenter', 1), ('similar', 3), ('ps', 1), ('valiant', 1), ('sisi', 1), ('ordinance', 1), ('crosby', 1), ('dwarven', 1), ('blacksmith', 2), ('infallible', 1), ('tracker', 2), ('attackers', 2), ('dadlife', 1), ('randstad', 1), ('gandalf', 1), ('aby', 1), ('renoir', 1), ('coronary', 1), ('bypass', 1), ('zanjeer', 1), ('babysitters', 1), ('knives', 1), ('fig', 2), ('nortons', 1), ('flippin', 1), ('hyslop', 1), ('ballad', 2), ('kisser', 1), ('boldly', 2), ('cancers', 1), ('curdle', 1), ('komodo', 1), ('skyfall', 1), ('materialize', 1), ('temporal', 2), ('psst', 1), ('competitiveness', 1), ('livestreaming', 1), ('riaa', 1), ('bombie', 1), ('jude', 2), ('attachment', 1), ('negligent', 1), ('oaf', 2), ('sloppily', 1), ('harshest', 1), ('workweek', 1), ('jalape', 1), ('medically', 1), ('disastrously', 1), ('orcs', 1), ('hony', 1), ('sauron', 1), ('iud', 1), ('celery', 1), ('scuba', 2), ('hookup', 1), ('linkedin', 2), ('ministry', 1), ('walt', 1), ('weasley', 1), ('translator', 3), ('spectral', 1), ('tattered', 1), ('leggings', 1), ('docile', 1), ('puffins', 1), ('devolve', 1), ('olsen', 5), ('shamble', 1), ('railway', 2), ('satans', 1), ('lasagna', 3), ('coe', 1), ('whereabouts', 2), ('grandparenting', 1), ('lizards', 1), ('bobsledder', 1), ('nadezhda', 1), ('sergeeva', 1), ('tove', 1), ('litany', 1), ('boosters', 1), ('liqui', 1), ('fruity', 1), ('thinker', 1), ('clayton', 1), ('demonize', 2), ('extradite', 1), ('gentle', 3), ('biographer', 3), ('marten', 1), ('ideology', 1), ('tilda', 1), ('swinton', 1), ('screwdriver', 1), ('plaything', 1), ('uncaged', 1), ('clout', 1), ('evaporate', 1), ('advancement', 2), ('unionize', 5), ('idris', 2), ('elba', 2), ('extensively', 1), ('tend', 3), ('crumple', 2), ('billie', 2), ('lourd', 1), ('hur', 1), ('helberg', 1), ('guild', 1), ('haddad', 1), ('sudafed', 1), ('congestion', 1), ('unjustified', 2), ('floorboards', 1), ('wretched', 1), ('outcast', 2), ('frailty', 1), ('impermanence', 1), ('backlog', 1), ('hormones', 1), ('reconcile', 2), ('perish', 1), ('tempest', 1), ('stadiums', 3), ('spatter', 4), ('songwriters', 1), ('tantaros', 1), ('nozzles', 1), ('orifices', 1), ('matterhorn', 1), ('unhappier', 1), ('categorization', 1), ('cannibal', 2), ('domenici', 1), ('hayride', 2), ('wagons', 1), ('oxycontin', 1), ('wooly', 1), ('mammoth', 1), ('saber', 2), ('meekly', 1), ('iroquois', 1), ('urgency', 2), ('multitask', 1), ('foreplay', 1), ('assail', 1), ('edict', 1), ('carnegie', 1), ('guggenheim', 1), ('forgery', 1), ('ouster', 1), ('laughable', 1), ('tragicomic', 1), ('tableau', 2), ('epiphanies', 1), ('undercurrent', 1), ('sordid', 2), ('conservatism', 1), ('handjob', 1), ('sanitizer', 1), ('freelance', 1), ('gillespie', 1), ('brownies', 1), ('foresee', 2), ('ts', 4), ('puff', 2), ('minis', 1), ('gauge', 2), ('slaughterhouse', 1), ('headphone', 1), ('synesthesia', 1), ('slather', 1), ('astrology', 1), ('bhangra', 1), ('shamers', 1), ('stuporous', 1), ('calculators', 1), ('chipmunks', 1), ('groove', 2), ('contradiction', 1), ('refinance', 1), ('cesarean', 1), ('spratlys', 1), ('sleazy', 2), ('butina', 2), ('whimper', 2), ('angelo', 1), ('surfbort', 1), ('seethe', 1), ('beginners', 1), ('diligently', 1), ('toothpick', 1), ('schlubby', 1), ('hydra', 1), ('pwc', 1), ('grindr', 3), ('oncologist', 1), ('nighy', 1), ('quarrel', 1), ('jumanji', 1), ('unnecessarily', 1), ('ulysses', 1), ('trimmer', 1), ('hedgehogs', 1), ('isolation', 1), ('roald', 1), ('dahl', 1), ('midtown', 1), ('repairmen', 1), ('buyouts', 1), ('dreamlike', 1), ('originate', 1), ('spinal', 2), ('kitchenaid', 3), ('mixers', 2), ('unwed', 1), ('ponzi', 1), ('flo', 1), ('muniz', 1), ('oppendahl', 3), ('amateurism', 1), ('usps', 1), ('roadblocks', 2), ('consolidation', 1), ('mewtwo', 1), ('hyperactive', 1), ('spatial', 2), ('tampax', 1), ('deprave', 2), ('misshapen', 2), ('raisins', 1), ('freakshow', 1), ('yep', 1), ('mysteriously', 1), ('antonoff', 1), ('impish', 1), ('brit', 1), ('hutcherson', 1), ('revulsion', 1), ('appointments', 1), ('heartburn', 1), ('preconceptions', 1), ('zellweger', 2), ('expos', 1), ('treaty', 1), ('kyoto', 1), ('alderson', 1), ('variant', 2), ('stoners', 1), ('nub', 2), ('iceman', 1), ('firefly', 1), ('junkies', 1), ('buttocks', 1), ('undulate', 1), ('hypnotically', 1), ('deserters', 1), ('sinfully', 1), ('worldly', 1), ('vices', 1), ('reestablish', 1), ('unsupervised', 1), ('commas', 1), ('cunningly', 1), ('theroux', 2), ('grizzly', 3), ('sprain', 1), ('storkholders', 1), ('machinery', 1), ('bearable', 1), ('marcoses', 2), ('belize', 1), ('ripa', 1), ('readjustments', 1), ('favorable', 1), ('armstrong', 3), ('inhibitions', 2), ('absurdity', 2), ('creations', 1), ('heinous', 1), ('sinclair', 3), ('barstool', 1), ('lac', 1), ('megantic', 1), ('smoky', 1), ('merv', 1), ('jaime', 2), ('ankles', 2), ('disprove', 1), ('eulogizer', 1), ('legit', 1), ('lanyard', 2), ('welterweight', 1), ('mcpherson', 1), ('bossy', 1), ('subtember', 1), ('meth', 2), ('inflatable', 2), ('refry', 1), ('aunts', 1), ('promiscuous', 1), ('unlv', 1), ('insatiable', 1), ('droplet', 1), ('windowpane', 1), ('smallpox', 1), ('vials', 1), ('bloodshed', 1), ('photoshoot', 2), ('presentable', 1), ('homosexualist', 1), ('anew', 1), ('vespucci', 1), ('puttanesca', 1), ('arrabiata', 1), ('breslin', 1), ('bocce', 1), ('holcomb', 1), ('instruction', 1), ('halen', 1), ('rhody', 1), ('announcer', 2), ('macau', 2), ('audiotapes', 1), ('conclusively', 1), ('underpay', 1), ('laborers', 3), ('snarl', 1), ('joey', 1), ('acclaim', 2), ('lens', 1), ('positivity', 2), ('loveless', 2), ('goode', 1), ('ezell', 2), ('flashback', 2), ('farrow', 2), ('laos', 1), ('undetonated', 1), ('baptize', 3), ('dud', 1), ('jurgen', 1), ('klinsmann', 1), ('clich', 3), ('sweetie', 1), ('stoudemire', 1), ('discoveries', 1), ('sumo', 1), ('salamander', 1), ('brigade', 1), ('geddes', 1), ('bracelets', 1), ('ayesha', 1), ('enchiladas', 2), ('incubator', 1), ('performative', 1), ('wokeness', 1), ('selectively', 2), ('connector', 1), ('mensch', 1), ('immense', 1), ('automation', 1), ('fete', 1), ('holloway', 2), ('deemphasize', 1), ('motivations', 1), ('queerbaiting', 1), ('festivus', 1), ('giamatti', 4), ('shapeless', 2), ('khakis', 2), ('rumple', 1), ('polos', 1), ('battlebots', 1), ('cpu', 1), ('comp', 1), ('freeheld', 1), ('skype', 3), ('exclusionary', 1), ('manpower', 1), ('skyla', 1), ('delist', 1), ('graters', 1), ('renaissance', 1), ('whaboom', 1), ('genie', 2), ('paycheck', 4), ('raqqa', 3), ('correspond', 1), ('slab', 1), ('induction', 1), ('omar', 3), ('khadr', 1), ('reaffirm', 3), ('tulsa', 1), ('monaghan', 1), ('allude', 1), ('rickles', 2), ('beefy', 1), ('romania', 1), ('occidental', 1), ('reza', 1), ('aslan', 1), ('revitalise', 1), ('paulo', 1), ('raze', 1), ('industrious', 1), ('elites', 1), ('coleman', 1), ('incumbents', 1), ('irregularities', 1), ('barefoot', 1), ('thoughtfully', 1), ('globs', 1), ('fisheries', 1), ('chinos', 1), ('impersonal', 1), ('queerness', 1), ('flinch', 1), ('attentively', 1), ('cuteness', 1), ('shipments', 1), ('stout', 1), ('cardamom', 1), ('indigo', 1), ('barbaric', 1), ('gouge', 2), ('kucinich', 1), ('gulp', 2), ('toothbrushes', 3), ('gridiron', 1), ('wpa', 1), ('disassemble', 1), ('reassemble', 1), ('sarin', 1), ('bernice', 1), ('salah', 1), ('abdeslam', 1), ('yuletide', 2), ('tr', 2), ('exterior', 1), ('resentful', 1), ('mccullen', 1), ('facade', 1), ('folksy', 1), ('detection', 1), ('brees', 1), ('legeno', 1), ('footprints', 3), ('avildsen', 1), ('chum', 1), ('printers', 1), ('funky', 3), ('intimacy', 3), ('memes', 2), ('galore', 1), ('elegant', 3), ('punctuation', 1), ('hyland', 3), ('catalan', 3), ('implications', 1), ('nippy', 2), ('dachshund', 2), ('truffles', 1), ('antidote', 2), ('mers', 1), ('inconsistency', 1), ('sandusky', 3), ('banter', 1), ('prejudicial', 1), ('civics', 1), ('yam', 1), ('civic', 4), ('filler', 1), ('rouhani', 2), ('smudge', 1), ('breadstick', 1), ('estrogen', 1), ('schiavo', 2), ('restock', 1), ('rum', 1), ('simulator', 1), ('inebriate', 1), ('cocoa', 1), ('hagel', 1), ('gothamist', 1), ('dnainfo', 1), ('portugal', 2), ('acupuncture', 1), ('seatbelts', 1), ('checkup', 1), ('hannibal', 2), ('bur', 2), ('richly', 1), ('mansplained', 1), ('birchbox', 1), ('customize', 1), ('cerebral', 5), ('palsy', 5), ('quaid', 1), ('miraculous', 1), ('gumption', 1), ('metamorphosis', 1), ('dante', 1), ('virgil', 1), ('foremost', 1), ('consistently', 1), ('administer', 1), ('foreshadow', 1), ('galleries', 1), ('defecate', 1), ('samsonite', 1), ('halloweiner', 1), ('frankfest', 1), ('relic', 3), ('quincy', 2), ('jackhammer', 1), ('parasitic', 1), ('disregard', 1), ('sfmoma', 1), ('dynasty', 3), ('interpret', 2), ('honcho', 1), ('rewinds', 1), ('trampoline', 1), ('netherlands', 1), ('gorsky', 1), ('windsor', 1), ('institution', 3), ('aground', 1), ('mt', 3), ('epcot', 1), ('almond', 1), ('stylin', 1), ('aline', 1), ('kominsky', 1), ('horny', 2), ('abject', 1), ('nearest', 1), ('definitively', 1), ('jealousy', 2), ('somers', 1), ('thighmaster', 1), ('carefree', 1), ('frown', 1), ('sympathetic', 3), ('mummenschanz', 1), ('hilaria', 1), ('glimmer', 2), ('townsfolk', 1), ('incarnation', 1), ('gregory', 1), ('lawler', 1), ('reverberate', 2), ('peripheral', 1), ('kale', 1), ('furrow', 1), ('brow', 1), ('terse', 2), ('emotionless', 1), ('raffle', 2), ('dreyfuss', 1), ('lahood', 1), ('combos', 2), ('munch', 1), ('crunchiness', 1), ('munchability', 1), ('footy', 1), ('mcfooty', 1), ('chavez', 2), ('bloodless', 1), ('stuyvesant', 1), ('chives', 2), ('mornin', 1), ('carli', 1), ('irresistible', 1), ('matchmaker', 1), ('teamnocancer', 1), ('denominational', 1), ('faiths', 1), ('although', 1), ('abusers', 3), ('thunderbirds', 1), ('memorandum', 1), ('sigma', 2), ('nu', 1), ('kashkari', 1), ('gourmet', 1), ('foodie', 1), ('dough', 1), ('mick', 2), ('mulvaney', 2), ('vocation', 1), ('gravity', 2), ('bundlers', 1), ('biathlon', 1), ('outsiders', 1), ('mediums', 1), ('frauds', 1), ('posh', 1), ('invitations', 1), ('blond', 3), ('obstruction', 3), ('photographers', 1), ('sanitation', 1), ('harpies', 1), ('crostini', 1), ('midair', 2), ('walnuts', 1), ('biomedical', 1), ('munn', 1), ('accelerators', 1), ('slappy', 1), ('forgetful', 2), ('bib', 1), ('ragtag', 1), ('pointz', 1), ('condos', 1), ('motorcyclists', 1), ('memoriam', 2), ('thicke', 1), ('vedder', 1), ('demonstrators', 1), ('homunculus', 1), ('raider', 1), ('vocalist', 2), ('calculations', 2), ('maleness', 1), ('grotesquely', 1), ('ozzy', 2), ('ozzfest', 1), ('preservation', 2), ('boyhood', 1), ('nolan', 1), ('outbid', 1), ('flog', 1), ('cosmo', 1), ('appearances', 2), ('ronson', 1), ('scoliosis', 1), ('jackals', 1), ('thang', 1), ('strang', 1), ('mudslide', 2), ('organizational', 1), ('sutherland', 1), ('stairwell', 1), ('optimal', 1), ('zoom', 1), ('alohahuffpost', 1), ('stimulate', 1), ('medicate', 1), ('mayhew', 1), ('libbing', 1), ('bs', 1), ('ultrasound', 3), ('chuy', 1), ('straits', 1), ('pankaj', 1), ('mishra', 1), ('planters', 1), ('houseplants', 1), ('townsperson', 1), ('rpg', 2), ('tronc', 1), ('levinsohn', 1), ('jil', 1), ('taboo', 2), ('snowboarder', 1), ('paladino', 1), ('pagans', 1), ('buoyant', 1), ('displace', 2), ('shopoholism', 1), ('shoposauruses', 1), ('mariani', 1), ('schiller', 1), ('lucy', 1), ('grapes', 1), ('partisanship', 1), ('transnational', 1), ('flursday', 1), ('dekkers', 1), ('individualize', 1), ('tricycle', 2), ('derulo', 1), ('murky', 1), ('charth', 1), ('vader', 2), ('necessity', 1), ('passively', 1), ('paragliding', 1), ('sincerity', 1), ('neptune', 1), ('shitload', 1), ('sketchbook', 1), ('gellar', 1), ('buffy', 1), ('roulette', 2), ('trillions', 1), ('derivatives', 1), ('ruh', 1), ('roh', 1), ('thresholds', 1), ('exhaustion', 1), ('techniques', 1), ('weinsteins', 1), ('farc', 1), ('sullen', 1), ('majestically', 1), ('mindanao', 1), ('iowans', 1), ('saldiva', 1), ('touchdown', 1), ('promptly', 2), ('seedy', 1), ('allay', 1), ('californians', 1), ('bender', 3), ('connie', 1), ('britton', 1), ('adventists', 1), ('ordination', 1), ('deftly', 2), ('citations', 1), ('motorists', 1), ('dont', 1), ('moronic', 1), ('mailroom', 1), ('metz', 1), ('blissed', 1), ('hemp', 1), ('crowe', 3), ('remnant', 1), ('hm', 1), ('mimic', 3), ('nonstop', 2), ('consuls', 1), ('lorde', 2), ('royals', 5), ('overenthusiastic', 2), ('ewen', 1), ('ascetic', 1), ('tollbooth', 1), ('reprieve', 1), ('cameltoe', 1), ('occupants', 1), ('windshield', 3), ('unhyphenated', 1), ('dermatologist', 1), ('dolores', 1), ('huerta', 1), ('newcomers', 1), ('ncis', 1), ('noisy', 1), ('carolyn', 1), ('maloney', 1), ('fads', 1), ('herd', 1), ('odorite', 1), ('craftmatic', 1), ('adjustable', 1), ('tonto', 1), ('unclaimed', 1), ('fidelity', 1), ('outweigh', 2), ('seabed', 1), ('juarez', 1), ('turf', 2), ('boudoir', 1), ('deloitte', 1), ('accountant', 1), ('abomination', 1), ('winterize', 1), ('alana', 1), ('juliette', 2), ('feld', 2), ('embarrassingly', 1), ('extraterrestrial', 2), ('trumphair', 1), ('gaetz', 2), ('pesticides', 2), ('dreamer', 1), ('asean', 1), ('hummingbirds', 1), ('incubators', 1), ('playboys', 1), ('mold', 2), ('terrain', 4), ('slickest', 1), ('exhilarate', 2), ('jigsaw', 2), ('expectancy', 2), ('romper', 1), ('exclusivity', 1), ('felon', 1), ('convictions', 2), ('thorpe', 1), ('wheaton', 1), ('unaffordable', 1), ('mi', 1), ('ville', 1), ('taker', 1), ('overeager', 2), ('crip', 1), ('krouse', 1), ('rosenthal', 1), ('vestiges', 1), ('huggers', 1), ('flagship', 2), ('xmasgiftsfromtrump', 1), ('rsvps', 1), ('swanson', 1), ('esque', 1), ('princesses', 1), ('untoward', 1), ('kat', 2), ('astronauts', 1), ('instagrammed', 1), ('embezzle', 2), ('dime', 1), ('criss', 1), ('mindfreak', 1), ('lowly', 1), ('valadao', 1), ('tk', 1), ('blackwater', 1), ('commonwealth', 1), ('taster', 2), ('tenacious', 1), ('learner', 1), ('grandsons', 1), ('syrups', 1), ('convincingly', 1), ('mack', 1), ('jab', 2), ('hardliners', 1), ('pseudonym', 1), ('condescendingly', 1), ('katt', 1), ('tivo', 2), ('sabatino', 1), ('nils', 1), ('hognestad', 1), ('hutsell', 1), ('caveats', 1), ('hydrogen', 1), ('owen', 2), ('tenenbaums', 1), ('hopper', 1), ('seminary', 1), ('pamphlets', 1), ('tylenol', 1), ('infraction', 1), ('yanni', 1), ('recollection', 1), ('gentrified', 1), ('transfusion', 1), ('pooping', 1), ('lenses', 1), ('builder', 1), ('boundless', 2), ('overuse', 1), ('cleaners', 1), ('superstains', 1), ('luminaries', 1), ('catalonia', 2), ('asthmatic', 1), ('asthmatics', 1), ('uzbekistan', 1), ('undeniable', 1), ('ericson', 1), ('ark', 1), ('bengal', 3), ('tigers', 3), ('jaipur', 1), ('illicit', 3), ('tryst', 1), ('hamburg', 1), ('trudeau', 4), ('boggs', 1), ('vuitton', 2), ('mangle', 2), ('auger', 1), ('millionth', 2), ('utterance', 1), ('diplomats', 2), ('stipple', 1), ('wick', 3), ('confiscate', 1), ('nosebleeds', 1), ('intensive', 1), ('touchdowns', 1), ('nomsense', 1), ('charger', 1), ('enabler', 1), ('hendricks', 1), ('vocalese', 1), ('tressel', 1), ('pavel', 1), ('durov', 1), ('individuals', 2), ('exuberant', 2), ('biodegradable', 1), ('ecstasy', 1), ('despair', 1), ('icu', 2), ('spite', 3), ('garrote', 1), ('interstate', 1), ('immortal', 3), ('retailers', 4), ('terabytes', 1), ('womenboycotttwitter', 1), ('facilitate', 2), ('omission', 1), ('eyesore', 2), ('scandalous', 1), ('modernization', 1), ('skee', 1), ('comrade', 1), ('campers', 2), ('lutheran', 1), ('monroee', 1), ('dracula', 1), ('corrosion', 1), ('vandana', 1), ('shiva', 1), ('indifferent', 1), ('sardinian', 1), ('cove', 1), ('anspach', 1), ('steady', 2), ('transcanada', 1), ('appendix', 1), ('stillborn', 1), ('nics', 1), ('reciprocity', 1), ('navratri', 1), ('hindu', 1), ('goddess', 3), ('jeffords', 1), ('afterschool', 1), ('prick', 3), ('pollen', 1), ('greenhouse', 1), ('luge', 1), ('brokaw', 1), ('reinvest', 1), ('economies', 1), ('transgenderism', 1), ('bayer', 1), ('unfettered', 1), ('whore', 1), ('messenger', 1), ('lynx', 1), ('neat', 1), ('clickbait', 1), ('tubby', 1), ('nope', 1), ('mccrazy', 1), ('sufficiency', 1), ('nph', 1), ('hedwig', 2), ('radcliffe', 1), ('immensity', 1), ('badger', 2), ('lint', 1), ('cardigan', 1), ('dammit', 2), ('miter', 1), ('faceshield', 1), ('brookstone', 1), ('mewesyria', 1), ('prism', 1), ('nonsensical', 1), ('anglican', 1), ('mnuchin', 2), ('misinterpret', 1), ('sarcasm', 1), ('miscalculation', 1), ('dendy', 1), ('fritter', 1), ('bayh', 1), ('modernize', 1), ('categories', 1), ('torrential', 1), ('decisive', 1), ('beachgoers', 1), ('bentley', 1), ('byron', 1), ('initiatives', 1), ('dacamented', 1), ('katsuya', 1), ('brentwood', 1), ('whisk', 1), ('exterminator', 1), ('jost', 1), ('sage', 1), ('hatala', 1), ('larsen', 1), ('reverend', 2), ('sharpton', 1), ('darth', 1), ('batgirl', 1), ('suffuse', 1), ('undertones', 1), ('prone', 3), ('levee', 1), ('kepler', 1), ('corgi', 1), ('kiddos', 1), ('detergent', 1), ('reaganism', 1), ('jettison', 2), ('midflight', 1), ('haegue', 1), ('leeum', 1), ('throttle', 1), ('lameness', 1), ('musicals', 3), ('mapmaker', 1), ('valueville', 1), ('airman', 1), ('cosme', 1), ('easygoing', 1), ('overclassification', 1), ('bain', 1), ('clif', 2), ('loaf', 1), ('elie', 1), ('wiesel', 1), ('quaint', 2), ('menforchoice', 1), ('cornerback', 1), ('jk', 1), ('dumbledore', 2), ('batshitzania', 1), ('sixty', 1), ('opium', 1), ('tums', 1), ('feisty', 1), ('schnook', 1), ('refocus', 1), ('lookin', 1), ('signage', 1), ('bloodbath', 1), ('semifinals', 1), ('aerobic', 1), ('bejewel', 1), ('twinkle', 2), ('tush', 1), ('golin', 1), ('flamethrowers', 1), ('mundane', 1), ('ensemble', 1), ('garry', 1), ('stupidity', 1), ('ipecac', 1), ('penitentiary', 3), ('croft', 1), ('crofts', 1), ('earle', 1), ('sift', 1), ('stuntin', 1), ('profitable', 1), ('jodie', 1), ('suicidegirls', 1), ('technicolor', 1), ('motels', 1), ('indistinct', 1), ('femur', 1), ('mouthwatering', 1), ('huffy', 1), ('moses', 2), ('fuckable', 1), ('congregations', 1), ('fugoo', 1), ('basel', 1), ('nestle', 2), ('lambert', 3), ('dakotans', 1), ('rushmore', 3), ('suge', 1), ('dishearten', 1), ('fyre', 2), ('homer', 2), ('unformed', 1), ('reb', 1), ('zalman', 1), ('mixtape', 2), ('indication', 1), ('ideals', 1), ('photobomber', 1), ('ajit', 2), ('pai', 2), ('aerosol', 1), ('upfront', 2), ('yup', 2), ('rasputins', 1), ('deceit', 1), ('vertigo', 1), ('wwe', 2), ('panorama', 1), ('goddam', 1), ('yothers', 1), ('pancuronium', 1), ('bromide', 1), ('possessive', 1), ('kudlow', 1), ('lectern', 1), ('gad', 1), ('kimmy', 1), ('schmidt', 1), ('tituss', 1), ('burgess', 1), ('peeno', 1), ('noir', 2), ('laporte', 1), ('bratz', 1), ('tack', 2), ('fraggle', 1), ('passionately', 1), ('priestley', 1), ('shannen', 1), ('doherty', 1), ('timeless', 1), ('airdrops', 1), ('stiffed', 1), ('watterson', 1), ('hobbes', 1), ('windy', 1), ('monetize', 1), ('enhancement', 1), ('untelevised', 1), ('reconstruct', 2), ('drumsticks', 1), ('disdain', 2), ('serenade', 1), ('badminton', 1), ('hazy', 1), ('argo', 1), ('hiddleston', 2), ('honky', 1), ('tonkin', 1), ('antihero', 1), ('ladykiller', 1), ('denouncement', 1), ('kumbaya', 1), ('inconvenient', 1), ('centerfold', 2), ('dyllan', 1), ('carjacker', 1), ('ilhan', 2), ('disrespectfully', 1), ('quantico', 1), ('baptism', 1), ('reelect', 2), ('diapers', 1), ('essence', 1), ('glasgow', 1), ('concertgoer', 1), ('stepdad', 1), ('goatee', 1), ('keqiang', 1), ('whereas', 1), ('recalibrates', 1), ('classically', 1), ('noose', 3), ('flaccid', 1), ('hayden', 1), ('delevingne', 1), ('paparazzo', 1), ('properties', 1), ('vitaminwater', 1), ('hoodie', 1), ('monks', 3), ('buddhist', 2), ('defenseless', 1), ('outvets', 1), ('outtakes', 1), ('cretaceous', 1), ('dashcam', 2), ('childbirth', 2), ('suave', 2), ('harshly', 2), ('talktome', 2), ('roddick', 1), ('vape', 1), ('reduction', 4), ('pewter', 1), ('inuit', 1), ('israelis', 1), ('forgo', 2), ('natalee', 1), ('nook', 2), ('connive', 1), ('weakest', 1), ('retainer', 1), ('cern', 1), ('universes', 1), ('delightfully', 2), ('zbt', 1), ('cheech', 1), ('medvedev', 1), ('powerless', 1), ('viola', 1), ('trinity', 2), ('outback', 2), ('walkabout', 1), ('wilderness', 1), ('cutscenes', 1), ('rerelease', 1), ('vicariously', 1), ('aspirations', 1), ('csi', 1), ('prenuptial', 1), ('adhesive', 2), ('ludicrous', 1), ('fisa', 2), ('shaq', 2), ('jenga', 1), ('mubarak', 1), ('severance', 2), ('mariana', 1), ('fastball', 1), ('tiniest', 1), ('ruthlessly', 1), ('liters', 1), ('yanny', 1), ('ruthless', 1), ('algae', 1), ('venmo', 1), ('goons', 1), ('botanical', 1), ('vlogger', 1), ('deliberate', 1), ('constitutionality', 2), ('somber', 1), ('om', 1), ('bunny', 2), ('ballgown', 1), ('madame', 2), ('daft', 1), ('illusions', 2), ('shareholder', 1), ('bhikkunis', 1), ('unforgettable', 1), ('holly', 2), ('woodlawn', 1), ('gigabite', 1), ('pricey', 1), ('scarves', 1), ('alina', 1), ('zagitova', 1), ('costly', 2), ('ari', 1), ('fleischer', 1), ('rohypnol', 1), ('mangy', 1), ('fx', 2), ('spirituality', 2), ('overlap', 1), ('lancet', 1), ('suitable', 2), ('winchester', 1), ('mm', 1), ('notme', 1), ('webcam', 1), ('vandal', 1), ('phallus', 1), ('fogelberg', 1), ('lite', 1), ('nester', 1), ('gus', 1), ('rapport', 1), ('regardless', 1), ('jen', 3), ('dhaka', 1), ('expat', 1), ('rudd', 1), ('juvenile', 1), ('drape', 1), ('shawl', 1), ('immodest', 1), ('crisper', 1), ('directive', 1), ('warby', 1), ('altruism', 1), ('cinemax', 2), ('skinematography', 1), ('ol', 1), ('elliott', 2), ('downvote', 1), ('groggy', 1), ('brutalize', 1), ('measurably', 1), ('zipline', 1), ('ziplines', 1), ('blazers', 1), ('bricks', 1), ('tunisia', 1), ('monaco', 1), ('penthousing', 1), ('willard', 1), ('rodents', 1), ('kennel', 1), ('khalid', 1), ('sheikh', 1), ('camila', 1), ('cabello', 1), ('repopulation', 1), ('crimean', 1), ('regulators', 1), ('vooms', 1), ('painfully', 1), ('kangaroos', 1), ('masochistic', 1), ('adoptions', 1), ('gucci', 2), ('queercore', 1), ('nibble', 1), ('languish', 1), ('reannounces', 1), ('medina', 1), ('undocu', 1), ('larios', 1), ('checkpoints', 1), ('klemke', 1), ('consensual', 1), ('gyro', 1), ('frenchman', 1), ('bataclan', 1), ('goats', 4), ('quicker', 1), ('souter', 1), ('microchips', 1), ('buttermilk', 1), ('confession', 3), ('fray', 1), ('favorably', 1), ('wilbur', 2), ('showrunner', 1), ('delirious', 2), ('koala', 1), ('jemele', 1), ('nabj', 1), ('extract', 1), ('greedy', 1), ('kubrick', 2), ('continental', 1), ('sunchips', 1), ('glamorize', 1), ('molt', 1), ('compliance', 1), ('sweeten', 1), ('sliders', 3), ('handbook', 1), ('uncircumcised', 1), ('lumbersexual', 1), ('caption', 2), ('rippon', 2), ('climactic', 1), ('thrust', 1), ('maelstrom', 1), ('territories', 2), ('souvenir', 1), ('aggressively', 1), ('redtube', 1), ('censor', 2), ('opiate', 1), ('prog', 2), ('levin', 1), ('carmine', 1), ('appice', 1), ('mccarty', 1), ('shimabukuro', 1), ('preventable', 1), ('coordinate', 1), ('countdown', 1), ('copper', 1), ('adamant', 1), ('councilman', 2), ('homesick', 2), ('reservations', 1), ('lng', 1), ('terminals', 1), ('backwaters', 1), ('snag', 1), ('drugstore', 1), ('rowers', 1), ('demonstrator', 1), ('bana', 1), ('emasculate', 1), ('druggies', 1), ('starship', 3), ('diffuser', 1), ('exempt', 1), ('holistic', 1), ('rockin', 1), ('pickle', 2), ('ironic', 1), ('minimize', 1), ('unesco', 2), ('cockatiel', 1), ('norris', 1), ('madmen', 1), ('multinational', 1), ('pepsico', 2), ('nutrients', 2), ('brainpower', 1), ('colonial', 1), ('williamsburg', 1), ('soulcycle', 1), ('rwandan', 1), ('brienne', 1), ('spaz', 3), ('oat', 1), ('barley', 1), ('risotto', 1), ('yammer', 1), ('tombstone', 2), ('eqypt', 1), ('erectile', 1), ('cutback', 1), ('elks', 1), ('overpasses', 1), ('tamer', 1), ('marginal', 1), ('minors', 1), ('vw', 1), ('catatonic', 1), ('turing', 2), ('panelists', 2), ('intelligently', 1), ('classifieds', 1), ('humankind', 1), ('lebaron', 2), ('rut', 1), ('autonomous', 2), ('skirmish', 1), ('villains', 1), ('erection', 2), ('andromeda', 1), ('specially', 1), ('wearer', 1), ('bustle', 2), ('exodus', 1), ('hotdogs', 1), ('creepily', 1), ('outnumber', 3), ('aftertaste', 1), ('starlet', 2), ('lob', 1), ('alright', 1), ('arrogance', 2), ('duress', 1), ('posthumously', 1), ('mekas', 1), ('rosary', 1), ('gals', 1), ('goddamned', 1), ('waterfront', 1), ('moonves', 2), ('obamaandkids', 1), ('inarticulate', 1), ('hitchens', 1), ('taiwanese', 1), ('salvation', 2), ('stirrup', 1), ('rudest', 1), ('calcutta', 1), ('sapphire', 1), ('delaware', 2), ('cfl', 1), ('unsportsmanlike', 1), ('bloused', 1), ('toil', 2), ('rainfall', 1), ('cyberbullying', 1), ('organizer', 2), ('hisp', 1), ('nico', 1), ('transmission', 4), ('balm', 1), ('salke', 1), ('sherry', 1), ('lansing', 1), ('wx', 1), ('lepage', 2), ('guillotine', 1), ('treme', 1), ('saltines', 1), ('dramas', 3), ('immunotherapy', 1), ('secrete', 1), ('plethora', 1), ('courtside', 1), ('pacers', 1), ('ire', 1), ('imprisonment', 1), ('projection', 2), ('rinpoche', 1), ('insurgents', 2), ('committees', 1), ('nokia', 1), ('rouseff', 1), ('asterisk', 2), ('breather', 1), ('have', 2), ('fatties', 1), ('pantywaist', 1), ('mockingjay', 2), ('courier', 1), ('crest', 1), ('toothpaste', 2), ('nirvana', 1), ('malick', 1), ('freida', 1), ('pinto', 1), ('photoshopped', 1), ('sitar', 1), ('pantsuit', 1), ('carnivore', 1), ('meatheads', 1), ('vandalism', 3), ('dysphoria', 1), ('persky', 1), ('kessler', 1), ('dwts', 2), ('perforate', 1), ('mutation', 2), ('fatty', 1), ('kneel', 2), ('zod', 1), ('douse', 2), ('beet', 1), ('hiss', 1), ('protrude', 1), ('tiffany', 1), ('haddish', 1), ('sheriffs', 1), ('moniz', 1), ('spieth', 1), ('willett', 1), ('nytimes', 1), ('retriever', 2), ('aint', 1), ('fmr', 1), ('zalmay', 1), ('khalilzad', 1), ('iteration', 1), ('combinations', 1), ('redact', 1), ('easton', 1), ('gaveling', 1), ('navajo', 1), ('ilana', 1), ('glazer', 1), ('harassers', 1), ('mingle', 2), ('mockery', 2), ('fingernail', 2), ('ample', 2), ('overinflated', 1), ('urinate', 2), ('shoplifters', 1), ('seedless', 1), ('douchey', 2), ('ointment', 1), ('firebomb', 1), ('condo', 1), ('bylaw', 1), ('deb', 1), ('microsft', 1), ('milton', 2), ('berle', 2), ('rejuvenate', 1), ('yore', 1), ('unborn', 1), ('simper', 1), ('cowards', 2), ('demography', 1), ('demographer', 1), ('mockument', 1), ('standup', 2), ('occupiers', 1), ('nratv', 1), ('microaggressions', 1), ('bodybuilder', 3), ('agile', 1), ('newscaster', 1), ('ns', 1), ('dwf', 1), ('governorship', 1), ('iamthegoldenstatekiller', 1), ('supersonic', 1), ('singlehandedly', 1), ('resentencing', 1), ('orson', 1), ('uswnt', 1), ('fabricate', 1), ('mound', 1), ('scorpion', 1), ('photojournalist', 2), ('vib', 1), ('systematic', 1), ('earrings', 1), ('spellbind', 1), ('fictional', 2), ('dermer', 1), ('christophe', 1), ('michalak', 1), ('ketamine', 1), ('depressant', 1), ('vj', 1), ('halcyon', 1), ('jinx', 1), ('receivable', 1), ('collaborator', 1), ('argentinian', 1), ('riverside', 1), ('preregistered', 1), ('shortfall', 1), ('bazooka', 1), ('mandarin', 1), ('precheck', 2), ('memberships', 1), ('contemptible', 1), ('rebrand', 2), ('silky', 1), ('kickabout', 1), ('cauliflower', 1), ('geils', 1), ('mortarboard', 1), ('collaborations', 1), ('horatio', 1), ('sanz', 1), ('kay', 1), ('amatrice', 1), ('rockers', 1), ('convergence', 1), ('remoteness', 1), ('dignify', 1), ('showoff', 1), ('pallbearer', 1), ('counterterrorists', 1), ('interchangeable', 1), ('starlets', 1), ('defang', 1), ('daycare', 2), ('crayola', 2), ('snowball', 2), ('province', 1), ('innocence', 2), ('bystanding', 1), ('examples', 1), ('grumblethor', 1), ('mischievous', 1), ('swank', 1), ('tasters', 1), ('upkeep', 1), ('cams', 1), ('officemates', 1), ('unwittingly', 1), ('boob', 3), ('endow', 1), ('wring', 1), ('cabernet', 1), ('sauvignon', 1), ('bulletin', 1), ('austerity', 1), ('accompany', 3), ('clothesline', 1), ('cutthroat', 1), ('stager', 1), ('zarin', 1), ('ramona', 1), ('sonata', 1), ('fireball', 1), ('arabs', 4), ('combo', 1), ('disembark', 1), ('osbourne', 1), ('nonvoter', 1), ('lovebird', 1), ('jeeves', 1), ('warts', 1), ('visceral', 1), ('suspicion', 1), ('untrustworthy', 1), ('scampi', 1), ('normally', 1), ('noche', 1), ('pasi', 1), ('soir', 1), ('yatseniuk', 1), ('chatroom', 1), ('rotisseries', 1), ('technological', 2), ('cait', 1), ('gaseous', 1), ('cannibalism', 2), ('kassig', 2), ('rancher', 1), ('mysteryland', 1), ('pyrotechnics', 1), ('addclimatechangetotv', 1), ('deafen', 1), ('darcy', 1), ('spiel', 1), ('suicidal', 1), ('geese', 1), ('jetliner', 1), ('queue', 1), ('primitive', 1), ('hardware', 1), ('shiver', 1), ('spine', 1), ('cheezburger', 1), ('vegetation', 1), ('hitchhike', 1), ('saran', 1), ('brownie', 1), ('sus', 1), ('tipton', 1), ('sportswriter', 1), ('memorization', 1), ('mgm', 1), ('methamphetamines', 1), ('marrakesh', 1), ('tcby', 1), ('dominant', 2), ('playbook', 2), ('outcome', 2), ('unplayed', 1), ('forensics', 1), ('turvy', 1), ('snowstorm', 3), ('adriatic', 1), ('notable', 2), ('disinvited', 1), ('tantric', 1), ('bacterial', 1), ('occasionally', 2), ('intuition', 1), ('structurally', 1), ('livestock', 2), ('transitional', 1), ('hotcake', 1), ('brisk', 1), ('hampton', 1), ('concierge', 1), ('missuniverse', 1), ('blockade', 1), ('zac', 1), ('efron', 1), ('presentness', 1), ('lund', 1), ('deadbeat', 1), ('dependency', 1), ('annul', 1), ('aptitude', 1), ('feek', 1), ('dementia', 3), ('vigorously', 1), ('readin', 1), ('researchin', 1), ('writin', 1), ('modifier', 1), ('prelims', 1), ('cynics', 1), ('realists', 1), ('confide', 1), ('jermaine', 1), ('dupri', 1), ('broil', 1), ('meats', 1), ('coatless', 1), ('deregulation', 1), ('bridesmaid', 1), ('idiotic', 2), ('writhe', 1), ('tentacles', 1), ('dustpan', 1), ('dodd', 1), ('elaborately', 2), ('rehearse', 1), ('betelgeuse', 1), ('supernova', 1), ('wheeldon', 1), ('gershwins', 1), ('muppet', 1), ('metzger', 1), ('worldview', 2), ('learnin', 1), ('davenport', 1), ('sbarro', 1), ('commodities', 1), ('trader', 1), ('outgrow', 1), ('irvin', 1), ('yalom', 1), ('madcap', 1), ('zany', 1), ('hijinks', 1), ('underreported', 2), ('mantis', 1), ('hesitantly', 1), ('roundabout', 1), ('cigars', 1), ('busier', 1), ('bruin', 1), ('unaffected', 2), ('whims', 2), ('yutu', 1), ('retrial', 1), ('housekeep', 2), ('cinch', 1), ('notch', 2), ('maroulis', 1), ('armour', 1), ('swivel', 1), ('wienermobile', 1), ('wienermobiles', 1), ('segment', 3), ('thorogood', 1), ('kinki', 1), ('cambodian', 1), ('dictatorship', 1), ('underwood', 1), ('stitch', 2), ('sundown', 1), ('chiropractor', 1), ('vertebrae', 1), ('chummy', 1), ('gonzaga', 1), ('keaton', 1), ('gauguin', 1), ('fondation', 1), ('beyeler', 1), ('crushworthy', 1), ('mazing', 1), ('jilt', 1), ('earther', 1), ('quintillion', 1), ('disciplinarian', 1), ('unruly', 1), ('meatloaf', 1), ('femoral', 1), ('artery', 1), ('dildos', 1), ('snacker', 1), ('forefront', 2), ('doze', 2), ('municipal', 1), ('wsj', 4), ('bookworms', 1), ('suborbital', 1), ('propulsion', 1), ('muppets', 1), ('orban', 1), ('levitate', 1), ('rainforests', 1), ('passports', 1), ('scourge', 1), ('tedious', 2), ('rumba', 1), ('cyst', 1), ('conventions', 1), ('reenactor', 1), ('vod', 1), ('thus', 1), ('swattin', 1), ('incompatible', 1), ('oligarch', 1), ('ammonia', 2), ('afterbirth', 1), ('germs', 1), ('brittany', 1), ('kwatinetz', 1), ('orgy', 1), ('defame', 1), ('pynk', 1), ('quinn', 2), ('predators', 2), ('airlock', 1), ('xxs', 1), ('slobbery', 1), ('liposuction', 1), ('motorcyclist', 1), ('bennett', 1), ('slipknot', 1), ('tyga', 2), ('snapchatting', 1), ('goodlatte', 1), ('neons', 1), ('gamgam', 1), ('pga', 1), ('takeaways', 1), ('negotiators', 1), ('trig', 1), ('unbelt', 1), ('walgreen', 1), ('spiral', 2), ('wineries', 1), ('dictionaries', 2), ('como', 1), ('flor', 1), ('misspoke', 1), ('caligula', 1), ('minions', 1), ('installation', 1), ('ancestry', 1), ('juggernaut', 1), ('reimagines', 2), ('mist', 1), ('porsha', 1), ('bennington', 1), ('tristan', 1), ('falluja', 1), ('esa', 1), ('innate', 1), ('formative', 1), ('crawlspaces', 1), ('outsize', 1), ('endeavour', 1), ('peacock', 2), ('cakeshop', 1), ('mistrial', 2), ('clarence', 3), ('tamper', 1), ('marathons', 1), ('interventions', 1), ('lifespan', 2), ('noticeable', 1), ('slacker', 1), ('anthems', 1), ('illiterate', 1), ('hideaways', 1), ('recyclables', 1), ('beagle', 1), ('chinaperson', 1), ('rightist', 1), ('syringe', 2), ('ambulance', 1), ('sneakers', 1), ('furiously', 1), ('contextless', 1), ('jb', 1), ('smoove', 1), ('sugary', 1), ('brouhaha', 1), ('pierre', 1), ('scorecard', 1), ('sandbag', 1), ('sergeant', 1), ('cadet', 1), ('chowderhead', 1), ('sled', 1), ('fester', 1), ('tyrese', 1), ('grimm', 1), ('apologists', 1), ('jokingly', 1), ('parley', 1), ('ringleader', 1), ('sundance', 2), ('clank', 1), ('phyllis', 1), ('schlafly', 1), ('kingmakers', 1), ('intimidation', 1), ('donovan', 1), ('mitchell', 1), ('footwear', 1), ('chloe', 2), ('uaw', 1), ('fca', 1), ('uninterrupted', 2), ('greitens', 1), ('pressurization', 1), ('kellyonmymind', 1), ('gissendaner', 1), ('weiwei', 1), ('catalogue', 1), ('stonestreet', 1), ('electrocution', 1), ('interventionists', 1), ('paragon', 1), ('chivalrous', 1), ('mozzarella', 2), ('toobin', 1), ('jumpsuit', 1), ('redefinition', 1), ('fern', 1), ('decode', 1), ('umpteenth', 1), ('beelines', 1), ('pinhead', 1), ('yazidis', 1), ('rc', 1), ('karenina', 1), ('copenhagen', 1), ('coloradans', 1), ('deregistered', 1), ('nipple', 1), ('playful', 2), ('trybeatingmelightly', 1), ('briefcases', 1), ('halogen', 1), ('faker', 1), ('machete', 1), ('gratuity', 1), ('ramen', 1), ('pao', 1), ('cgi', 1), ('ucsf', 1), ('benioff', 1), ('hemophiliac', 1), ('kilimanjaro', 1), ('lima', 1), ('exemptions', 1), ('ncnoltes', 1), ('alienation', 1), ('kritzer', 1), ('teal', 1), ('wicks', 1), ('kc', 1), ('reliance', 1), ('fruitvale', 1), ('yada', 2), ('croatian', 2), ('getter', 1), ('pebble', 1), ('werner', 1), ('herzog', 1), ('timothy', 3), ('treadwell', 1), ('pintauro', 1), ('tipper', 1), ('lotioning', 1), ('spaghetti', 1), ('elegance', 1), ('connick', 1), ('merch', 1), ('boynton', 1), ('jackman', 1), ('hazen', 1), ('recharge', 1), ('steagall', 1), ('jonesing', 1), ('improv', 1), ('troupe', 1), ('protract', 1), ('neckhole', 1), ('remorseless', 1), ('selene', 1), ('archaeologist', 1), ('inhaler', 1), ('lycra', 1), ('bodysuit', 2), ('infomercial', 1), ('kristofferson', 1), ('steele', 2), ('espy', 1), ('chechens', 1), ('enthusiasts', 1), ('bebop', 1), ('rocksteady', 1), ('impend', 2), ('whimsical', 1), ('meloni', 1), ('freud', 1), ('appliance', 1), ('chatroulette', 1), ('pigeons', 2), ('creditors', 1), ('setup', 1), ('groceries', 1), ('strategically', 1), ('citizenry', 1), ('islanders', 1), ('wissam', 1), ('mana', 1), ('roughly', 1), ('sealy', 1), ('publicize', 1), ('probiotic', 1), ('inert', 1), ('vh', 1), ('uplift', 1), ('prolong', 2), ('regulator', 1), ('zionism', 1), ('seagull', 1), ('donbas', 1), ('ming', 1), ('yuan', 1), ('mainland', 1), ('nilla', 1), ('growers', 1), ('soften', 1), ('exploration', 1), ('partnerships', 1), ('spurlock', 1), ('accusation', 1), ('scamming', 1), ('magdalene', 1), ('alpert', 1), ('gogo', 1), ('paleontology', 1), ('congratulations', 1), ('developmental', 1), ('bose', 1), ('optimize', 1), ('tedx', 1), ('skeptic', 1), ('medicalert', 1), ('plouffe', 1), ('flatten', 2), ('indy', 1), ('milky', 2), ('obscene', 1), ('launder', 1), ('copeland', 1), ('ep', 1), ('disquiet', 1), ('exertion', 1), ('arteries', 1), ('grizzle', 2), ('pa', 2), ('mandel', 1), ('bubba', 1), ('deflect', 1), ('caretakers', 1), ('blizzcon', 1), ('togo', 1), ('lyte', 1), ('hansel', 1), ('gretel', 1), ('dimension', 2), ('secretaries', 1), ('benito', 1), ('krispy', 2), ('kreme', 2), ('paddlers', 1), ('baggies', 1), ('legitimacy', 1), ('boitano', 1), ('marshawn', 1), ('shareware', 1), ('israelites', 1), ('sinai', 1), ('tallest', 2), ('hotcakes', 1), ('canvasser', 1), ('slender', 1), ('turpan', 1), ('iris', 2), ('apfel', 1), ('hardee', 1), ('eulogy', 3), ('reinvested', 1), ('blackjack', 1), ('gefloigel', 1), ('pooch', 1), ('backpage', 1), ('undersell', 1), ('counterintuitive', 1), ('margaritaville', 1), ('nicoderm', 1), ('nicotine', 1), ('inescapable', 2), ('tiq', 1), ('liberation', 1), ('multitasking', 1), ('voguing', 1), ('confine', 1), ('crass', 1), ('polaris', 1), ('robe', 2), ('bern', 1), ('technologies', 1), ('authentically', 1), ('cutlery', 1), ('cloaca', 1), ('acknowledgement', 1), ('garth', 2), ('slither', 1), ('hymnal', 1), ('winfrey', 1), ('considerable', 1), ('harem', 1), ('typographical', 1), ('melanoma', 1), ('emancipation', 1), ('proclamation', 1), ('monarch', 1), ('directorial', 2), ('busiest', 1), ('saddle', 1), ('volleyball', 2), ('reece', 1), ('soreness', 1), ('congressperson', 1), ('entwine', 1), ('extrovert', 1), ('dillard', 1), ('rakhine', 1), ('ut', 1), ('alumnus', 1), ('cleverly', 1), ('dada', 1), ('cha', 2), ('gambler', 1), ('sculptor', 1), ('magma', 1), ('fearmongering', 1), ('hansom', 1), ('junta', 1), ('dreadlocked', 1), ('serta', 1), ('wholesaler', 1), ('dodgeball', 1), ('commenter', 1), ('morass', 1), ('dreamgirl', 1), ('centenarians', 1), ('achievable', 2), ('cosplays', 1), ('lannister', 1), ('shawn', 2), ('firebrand', 1), ('insistent', 1), ('bernstein', 1), ('uae', 3), ('tribes', 1), ('qatari', 1), ('emir', 1), ('fps', 1), ('min', 1), ('vain', 3), ('romantically', 1), ('gamechanger', 1), ('kailash', 1), ('satyarthi', 1), ('negativity', 1), ('militancy', 1), ('fleetingly', 1), ('shag', 1), ('burka', 1), ('niqab', 1), ('aman', 1), ('sethi', 1), ('tamp', 1), ('poo', 1), ('daryl', 1), ('snorkel', 1), ('lynde', 1), ('citrix', 1), ('hermits', 1), ('natgeo', 1), ('internets', 1), ('moonlight', 2), ('uncles', 1), ('corral', 1), ('ouchless', 1), ('dual', 2), ('humanly', 1), ('intercultural', 1), ('punctuality', 1), ('gigawatts', 1), ('socrates', 1), ('dialogues', 1), ('shill', 1), ('reffed', 1), ('pogue', 1), ('canteen', 1), ('abstract', 1), ('mckinsey', 1), ('malaria', 1), ('rattlesnakes', 1), ('elude', 1), ('pursuers', 1), ('counteroffensive', 1), ('mcadoo', 1), ('bandicoot', 1), ('tuxedo', 1), ('whitewash', 2), ('cassette', 1), ('rodney', 1), ('sometime', 1), ('slanty', 1), ('italics', 1), ('prettiest', 1), ('wasp', 1), ('socialite', 1), ('cunt', 1), ('spock', 1), ('rahman', 1), ('sherwin', 1), ('endometrial', 1), ('foodborne', 1), ('eclair', 1), ('tlc', 3), ('goya', 1), ('protocols', 1), ('ebony', 1), ('magazines', 1), ('vai', 1), ('dispenser', 1), ('hauntedness', 1), ('distinctly', 1), ('cilantro', 1), ('cutbacks', 1), ('dundee', 1), ('mileage', 1), ('canoe', 3), ('matchbox', 1), ('wiseau', 1), ('allegiance', 2), ('samira', 1), ('wiley', 1), ('conservationist', 1), ('blige', 1), ('abuzz', 1), ('condemnation', 1), ('artisanal', 2), ('grit', 1), ('courteously', 1), ('hypocritical', 1), ('vibe', 1), ('uncaptured', 1), ('keffiyeh', 1), ('starboard', 1), ('thunk', 1), ('moosh', 1), ('baroo', 1), ('locket', 1), ('camry', 1), ('brighter', 1), ('sweatiest', 1), ('techno', 2), ('homeopathic', 1), ('spector', 1), ('pessimism', 1), ('ciarlelli', 1), ('vindictive', 1), ('scarface', 2), ('weirdly', 1), ('marilinda', 1), ('unskewing', 1), ('gadfly', 1), ('commentary', 3), ('jelly', 1), ('aftershock', 1), ('consecrate', 1), ('cancerous', 1), ('gianforte', 1), ('materialistic', 1), ('punniest', 1), ('bouncers', 1), ('supermoon', 1), ('don', 1), ('dukakis', 2), ('livid', 1), ('cassidy', 1), ('cardiovascular', 1), ('dapper', 1), ('brazen', 1), ('shimmer', 1), ('umbrellas', 1), ('magician', 1), ('blowtorch', 1), ('turnips', 1), ('labyrinthian', 1), ('logos', 1), ('pretties', 1), ('mace', 1), ('fanny', 1), ('satchel', 1), ('secretive', 3), ('heisman', 1), ('zenzinger', 1), ('nutso', 1), ('freshly', 2), ('forte', 1), ('qualification', 1), ('shallow', 1), ('bilious', 1), ('unsaved', 1), ('gallstone', 1), ('incomplete', 1), ('equalizer', 1), ('proofreader', 1), ('rhubarb', 1), ('explainer', 1), ('formerly', 1), ('unspeakable', 1), ('um', 1), ('adrenal', 1), ('interlude', 1), ('competitors', 1), ('chromecast', 1), ('vot', 1), ('assistance', 2), ('pittsburgh', 2), ('marcomentum', 1), ('header', 1), ('shortly', 1), ('esposito', 1), ('gayer', 2), ('baaaaack', 1), ('presumptuous', 1), ('pitcher', 1), ('booze', 2), ('timelines', 1), ('beastie', 1), ('unbeatable', 1), ('constrictive', 1), ('kup', 1), ('effigy', 1), ('disarm', 1), ('berk', 1), ('deletion', 1), ('shiites', 1), ('framers', 1), ('amendments', 1), ('journals', 2), ('cortege', 1), ('enbridge', 1), ('kazakhstani', 1), ('carbo', 1), ('moustache', 1), ('tomboy', 1), ('meaty', 1), ('ahmad', 1), ('rahami', 1), ('tiptoe', 1), ('expertly', 1), ('fawlty', 1), ('infighting', 1), ('pea', 1), ('everyman', 1), ('janna', 1), ('bashful', 1), ('aipac', 1), ('wellesley', 1), ('brochure', 1), ('nofilter', 1), ('hairs', 1), ('careerlink', 1), ('alums', 1), ('markell', 1), ('okcupid', 1), ('aspershirt', 1), ('marina', 1), ('siegel', 1), ('fetuses', 2), ('humidifier', 1), ('mastiff', 1), ('droopy', 1), ('effectiveness', 2), ('condescend', 1), ('virtually', 1), ('rosario', 1), ('elmore', 1), ('succinctly', 1), ('gloomy', 1), ('polly', 1), ('zehnder', 1), ('swader', 1), ('superdelegates', 1), ('raza', 1), ('encode', 1), ('burgenland', 1), ('ceremoniously', 1), ('tenuous', 1), ('afterwards', 1), ('nagel', 1), ('garrison', 1), ('keillor', 1), ('stoplight', 1), ('waterslide', 1), ('minson', 1), ('hungarian', 1), ('embarrassment', 1), ('miracles', 1), ('ironically', 1), ('kozol', 1), ('hippocratic', 2), ('rickety', 2), ('biter', 1), ('gopsongsaboutethics', 1), ('rainbows', 1), ('adequate', 1), ('froot', 2), ('humanize', 2), ('interplanetary', 1), ('poach', 3), ('carney', 1), ('outrageously', 1), ('loopholes', 1), ('etch', 1), ('accessory', 1), ('fellowship', 2), ('investigations', 1), ('animator', 1), ('glisten', 1), ('scum', 1), ('hochuli', 1), ('hotties', 1), ('voluptuous', 1), ('shapely', 1), ('clementines', 1), ('heller', 1), ('treaters', 1), ('uncomprehendingly', 1), ('chlo', 1), ('sevign', 1), ('umlaut', 1), ('smirk', 1), ('mudslides', 1), ('silliest', 1), ('hdtv', 1), ('compatibility', 1), ('mantel', 1), ('tuscan', 1), ('resettle', 1), ('mientus', 1), ('cradle', 2), ('punxsutawney', 1), ('urination', 1), ('cftc', 1), ('effortless', 1), ('parlay', 1), ('cisco', 1), ('wantonly', 1), ('firefighting', 1), ('gresham', 2), ('esl', 1), ('concentrate', 1), ('vocabulary', 1), ('colorblind', 1), ('verb', 1), ('noun', 1), ('prepositional', 1), ('faroe', 1), ('talents', 1), ('cinematographer', 1), ('girly', 1), ('misconception', 1), ('handbag', 1), ('vegetarians', 1), ('dullard', 1), ('vocational', 1), ('mane', 1), ('stillbirth', 1), ('assurance', 1), ('codepink', 1), ('tarmac', 1), ('electability', 1), ('gotta', 1), ('baseless', 1), ('reciprocate', 1), ('diorama', 1), ('vance', 1), ('threshold', 1), ('lily', 1), ('jacuzzi', 1), ('pinkerton', 1), ('busters', 1), ('sensei', 1), ('parch', 1), ('commentate', 1), ('fitzpatrick', 1), ('horseface', 1), ('rentals', 1), ('cartoonists', 2), ('completists', 1), ('tracey', 1), ('ullman', 1), ('peru', 2), ('kuczynski', 1), ('spokesperson', 1), ('canard', 1), ('hgtv', 1), ('incoming', 2), ('foolhardy', 1), ('onesie', 1), ('imagery', 2), ('corbusier', 1), ('nuances', 1), ('stingy', 1), ('saga', 1), ('cryptozoologist', 1), ('veronaon', 1), ('circumcision', 1), ('pell', 1), ('lisande', 1), ('cyndi', 1), ('lauper', 1), ('thumbtack', 1), ('audrey', 1), ('hepburn', 1), ('toucan', 1), ('mascots', 1), ('segway', 1), ('rotten', 1), ('oddball', 1), ('expend', 1), ('leathery', 1), ('busey', 1), ('msf', 1), ('faceoff', 1), ('hysterically', 1), ('vulture', 1), ('dinnertime', 1), ('regretfully', 1), ('cushion', 2), ('hewitt', 1), ('myspace', 1), ('tamra', 1), ('housewives', 1), ('nerdiest', 1), ('elliptical', 1), ('psychosexual', 1), ('mormons', 1), ('fsu', 1), ('dalvin', 1), ('jarringly', 1), ('starcraft', 1), ('persistence', 1), ('raphael', 1), ('yippee', 1), ('ki', 1), ('yay', 1), ('violators', 1), ('skank', 1), ('scant', 2), ('temps', 1), ('naturist', 1), ('hellscape', 2), ('kwanzaa', 1), ('imbalance', 1), ('dynamics', 2), ('hissy', 1), ('clam', 2), ('headlock', 1), ('geologic', 1), ('forth', 2), ('klum', 1), ('frequently', 1), ('omnipotent', 1), ('nova', 1), ('bouncin', 1), ('ejaculate', 1), ('solace', 1), ('suffragist', 1), ('coherent', 1), ('leary', 1), ('interviewers', 1), ('mainsplainer', 1), ('usurp', 1), ('pvc', 1), ('campfire', 1), ('faris', 1), ('jena', 1), ('malone', 1), ('lyons', 1), ('aunties', 1), ('megadrought', 1), ('disarray', 1), ('sincere', 1), ('cinephiles', 1), ('penises', 1), ('lara', 1), ('boyle', 1), ('toyotathon', 1), ('armie', 1), ('ratburn', 1), ('twink', 1), ('camcorder', 1), ('unchallenged', 1), ('underperform', 1), ('ballers', 1), ('antoni', 1), ('porowski', 1), ('deshawnda', 1), ('corrugate', 2), ('clauses', 1), ('yeti', 1), ('abdominable', 1), ('terminology', 1), ('enthral', 1), ('flexibility', 1), ('agog', 1), ('gimp', 1), ('schoolgirl', 1), ('cruelest', 1), ('obedient', 1), ('compactor', 1), ('glassdoor', 1), ('spiky', 1), ('dod', 1), ('nomads', 1), ('shittier', 1), ('xxxx', 1), ('overshadow', 2), ('hefty', 1), ('underused', 1), ('hesitant', 1), ('jarvis', 1), ('stearns', 1), ('processors', 1), ('reviewers', 2), ('depressingly', 1), ('bernadette', 1), ('conners', 1), ('volumes', 1), ('pawprint', 1), ('braga', 1), ('otaviano', 1), ('canuto', 1), ('replaceable', 1), ('eleanor', 1), ('rigby', 1), ('risheq', 1), ('lupe', 1), ('libtard', 1), ('cuck', 1), ('frustrations', 1), ('childlike', 1), ('paso', 1), ('newsguild', 1), ('regain', 1), ('immersion', 1), ('homeboys', 1), ('outer', 1), ('almanac', 1), ('primetime', 1), ('inappropriations', 1), ('sexier', 1), ('dorchester', 1), ('batten', 1), ('shyla', 1), ('stylez', 1), ('avn', 1), ('denim', 2), ('dui', 1), ('monogamy', 2), ('sleeves', 1), ('steves', 1), ('ghanaian', 1), ('mop', 2), ('kokopellied', 1), ('uniquely', 1), ('unsuited', 1), ('pagodas', 1), ('cate', 1), ('blanchett', 1), ('dewan', 1), ('appease', 1), ('figurines', 1), ('biodegrade', 1), ('reuther', 1), ('managers', 1), ('railways', 1), ('boatless', 1), ('cucumber', 1), ('quirk', 1), ('idina', 1), ('menzel', 1), ('pepe', 1), ('guidebook', 2), ('mitsubishi', 1), ('plymouth', 1), ('beasts', 1), ('quayle', 1), ('patriarch', 1), ('hezbollah', 1), ('hindsight', 1), ('density', 1), ('kevins', 1), ('overtire', 1), ('johns', 1), ('hopkins', 2), ('cartgate', 1), ('ryancare', 1), ('zedd', 1), ('kuwtk', 1), ('dannon', 1), ('yogurt', 2), ('coincide', 1), ('mag', 1), ('gorton', 1), ('inflections', 1), ('unrewarding', 1), ('clamshell', 1), ('exquisite', 1), ('unsuccessfully', 1), ('facinelli', 1), ('jaimie', 1), ('liev', 1), ('schreiber', 1), ('seismologist', 1), ('richter', 1), ('mumolo', 1), ('chevy', 1), ('lamont', 1), ('banal', 1), ('rca', 1), ('arista', 1), ('daltrey', 1), ('hernan', 1), ('barangan', 1), ('fantastically', 1), ('traitor', 1), ('shortsighted', 1), ('sheila', 1), ('heimlich', 1), ('royalties', 1), ('tine', 1), ('mouthfuls', 1), ('melanesian', 1), ('romeo', 1), ('juliet', 1), ('disenfranchise', 1), ('lull', 1), ('rumble', 2), ('stupidest', 1), ('kurdi', 1), ('idolatry', 1), ('grapevine', 1), ('horsey', 1), ('enemy', 3), ('internationalization', 1), ('afl', 1), ('cio', 1), ('nobannowall', 1), ('harmon', 1), ('fearsome', 1), ('allstate', 1), ('masseuse', 1), ('mockingly', 1), ('swimwear', 1), ('unedited', 1), ('lupone', 1), ('sofa', 1), ('backstabbing', 1), ('traitors', 1), ('bionic', 1), ('fingertip', 1), ('folk', 2), ('ike', 1), ('barinholtz', 1), ('blare', 1), ('chadwick', 2), ('boseman', 1), ('tastic', 1), ('pubic', 1), ('underbelly', 1), ('sheedy', 1), ('aleck', 1), ('isabel', 1), ('allende', 1), ('bussi', 1), ('wltz', 1), ('hartford', 1), ('overcharge', 1), ('invention', 1), ('penicillin', 1), ('arsenic', 1), ('conroy', 1), ('septum', 1), ('edtech', 1), ('antibodies', 1), ('disqualify', 3), ('dominicans', 1), ('emission', 1), ('pulsate', 1), ('sherbet', 1), ('zagat', 1), ('chickening', 1), ('fabio', 1), ('viviani', 1), ('cinemark', 1), ('liable', 1), ('urbanism', 1), ('lotions', 1), ('storied', 1), ('ip', 1), ('rattan', 2), ('papua', 1), ('wrinkly', 1), ('unshaven', 1), ('oppenheimer', 1), ('bhagavad', 1), ('gita', 1), ('gust', 1), ('inferiority', 1), ('citigroup', 1), ('clique', 1), ('warmly', 1), ('sturgeon', 1), ('acadia', 1), ('tweak', 1), ('rv', 1), ('gsvatn', 1), ('stoop', 1), ('connectivity', 1), ('strut', 1), ('imbecile', 1), ('opcw', 1), ('onionman', 1), ('kaleidoscoping', 1), ('lifesavers', 1), ('bahama', 1), ('carnage', 1), ('earnhardt', 1), ('serengeti', 1), ('regis', 2), ('philbin', 1), ('finalists', 1), ('iditarod', 1), ('caterers', 1), ('revenant', 1), ('danube', 1), ('plinko', 1), ('acre', 1), ('sleight', 1), ('vultures', 1), ('smugglers', 1), ('auditorium', 1), ('plimpton', 1), ('apoplectic', 1), ('factions', 1), ('emojisinthewild', 1), ('farce', 1), ('plummers', 1), ('deutsche', 1), ('sarcastically', 1), ('winn', 1), ('mccool', 1), ('tresspasser', 1), ('artie', 1), ('lange', 1), ('mathematical', 1), ('skill', 1), ('mollify', 1), ('divestment', 1), ('amazingly', 1), ('humanlike', 1), ('sonia', 1), ('yoshi', 1), ('playplace', 1), ('draymond', 1), ('raffi', 1), ('sillies', 1), ('ostensibly', 1), ('komen', 1), ('ayahuasca', 1), ('interpreter', 1), ('condense', 1), ('zionist', 1), ('rabbinic', 1), ('abstention', 1), ('chartreuse', 1), ('luau', 1), ('laze', 1), ('pynchon', 1), ('goodie', 1), ('pillars', 1), ('exceptions', 1), ('tofurkey', 1), ('sideshow', 1), ('equestrian', 1), ('unlikable', 1), ('tiebreaker', 1), ('reinstate', 1), ('interminable', 1), ('chapecoense', 1), ('piloto', 1), ('boliviano', 1), ('snapback', 1), ('trapeze', 1), ('override', 1), ('scald', 1), ('deprive', 1), ('injections', 1), ('unappealing', 1), ('soundtracks', 1), ('lardface', 1), ('paleo', 1), ('platoon', 1), ('ivana', 1), ('farberware', 1), ('nonstick', 1), ('urschel', 1), ('misguide', 3), ('pests', 1), ('graffitied', 1), ('jumbo', 2), ('korman', 1), ('candler', 1), ('elijah', 1), ('mcneil', 1), ('atrans', 1), ('transformers', 2), ('deface', 1), ('mtm', 1), ('democalypse', 1), ('whuppin', 1), ('telemundo', 1), ('incomparable', 1), ('mittenaere', 1), ('johanns', 1), ('conga', 1), ('participant', 1), ('vulgaria', 1), ('statham', 1), ('pwnage', 1), ('lbj', 1), ('impropriety', 1), ('rite', 3), ('ashtanga', 1), ('gaziantep', 1), ('nondisclosure', 1), ('morales', 1), ('moonlit', 1), ('bonfire', 1), ('conjure', 1), ('frenchie', 1), ('predisposition', 1), ('clotheslines', 1), ('incredibles', 2), ('convent', 1), ('bront', 2), ('superbug', 1), ('thousandth', 1), ('versatile', 1), ('minimal', 1), ('iverson', 1), ('realest', 1), ('famer', 1), ('naptime', 1), ('renege', 1), ('interaction', 1), ('flusher', 1), ('snare', 1), ('patrolmen', 1), ('wipeout', 1), ('hachette', 1), ('smartness', 1), ('shakily', 1), ('curfews', 1), ('helium', 1), ('juno', 2), ('squeaky', 1), ('joyous', 1), ('eid', 1), ('ugaaso', 1), ('abukar', 1), ('boocow', 1), ('mogadishu', 1), ('nostalgically', 1), ('engel', 1), ('hangnail', 1), ('mummy', 1), ('bras', 1), ('philanthropy', 1), ('suavity', 1), ('trenchcoat', 1), ('brass', 1), ('urn', 1), ('maldives', 1), ('croutons', 1), ('amplifyd', 1), ('traction', 1), ('impromptu', 1), ('chitty', 2), ('contributor', 1), ('gobble', 2), ('nicki', 1), ('minaj', 1), ('insure', 1), ('enthrone', 1), ('circulation', 1), ('chik', 1), ('stricter', 1), ('hobnob', 1), ('givers', 1), ('gamson', 1), ('alaina', 1), ('percival', 1), ('uncaring', 1), ('adulterers', 1), ('pointless', 1), ('oxytocin', 1), ('chechnya', 1), ('lengths', 1), ('neyt', 1), ('arkin', 1), ('scorchlands', 1), ('outposts', 1), ('benatar', 1), ('coyne', 1), ('habitats', 1), ('entanglements', 1), ('shakers', 1), ('premise', 1), ('herpetologists', 1), ('becker', 1), ('guernica', 1), ('visage', 1), ('llorona', 1), ('unfiltered', 1), ('bookcase', 1), ('stapler', 1), ('staplers', 1), ('bernhardt', 1), ('flamin', 1), ('lime', 1), ('ulcerative', 1), ('colitis', 1), ('evident', 1), ('firefight', 2), ('enigmatic', 1), ('josef', 1), ('koudelka', 1), ('rapture', 1), ('depressive', 1), ('myopia', 1), ('optometrist', 1), ('modi', 1), ('wiretap', 1), ('appreciably', 1), ('monae', 1), ('jowl', 1), ('snore', 1), ('condiments', 1), ('decomposition', 1), ('icelandic', 1), ('beavan', 1), ('insanely', 1), ('calve', 1), ('canadians', 1), ('favorability', 1), ('arlen', 1), ('specter', 1), ('affiliation', 1), ('seductive', 2), ('coretta', 1), ('hairy', 1), ('alibi', 1), ('nissan', 1), ('depositions', 1), ('exaggerate', 2), ('farallon', 1), ('usfws', 1), ('commodore', 1), ('bunsen', 1), ('burners', 1), ('pleasantries', 1), ('zoe', 1), ('saldana', 1), ('scarily', 1), ('ultimately', 1), ('overgrow', 1), ('thematically', 1), ('rapists', 1), ('homey', 1), ('mckinney', 1), ('unaccountable', 2), ('intersect', 1), ('interdisciplinary', 1), ('hpps', 1), ('abso', 1), ('moochly', 1), ('annis', 1), ('merron', 1), ('operators', 1), ('porcupine', 1), ('corona', 1), ('periodically', 1), ('dub', 1), ('malnourish', 1), ('supervise', 1), ('pantene', 1), ('dispose', 1), ('geo', 2), ('nicu', 1), ('triangular', 1), ('acute', 1), ('sneakier', 1), ('schnauzers', 1), ('alig', 1), ('catsuits', 1), ('rosaries', 1), ('nair', 1), ('incendiary', 1), ('loners', 1), ('deportations', 1), ('backward', 1), ('unencumbered', 1), ('reside', 1), ('inanimate', 1), ('inspect', 1), ('nimrud', 1), ('hannitys', 1), ('objection', 1), ('playtex', 1), ('uncooperative', 1), ('beckinsale', 1), ('glenbrook', 1), ('wrestletalk', 1), ('koenig', 1), ('entenmann', 1), ('bestival', 1), ('supermarkets', 1), ('satin', 1), ('blot', 1), ('olin', 1), ('dirtier', 1), ('preacher', 1), ('anjem', 1), ('choudary', 1), ('disasters', 2), ('menswear', 1), ('mirjana', 1), ('lucic', 1), ('baroni', 1), ('influencers', 1), ('constitutions', 1), ('dusk', 1), ('nights', 1), ('simpleton', 1), ('doubters', 1), ('feasibility', 1), ('kofi', 1), ('annan', 1), ('bedsore', 1), ('kristin', 1), ('assertion', 1), ('achievment', 1), ('kidnappings', 1), ('labeouf', 1), ('walletless', 1), ('bedpost', 1), ('slink', 1), ('brolin', 1), ('gingerbread', 1), ('precocious', 2), ('sontag', 1), ('intolerance', 1), ('barnacle', 1), ('ionceoverheard', 1), ('gladiator', 1), ('turbo', 1), ('bb', 1), ('forbearance', 1), ('disorderly', 1), ('intoxication', 1), ('cayman', 1), ('jayne', 1), ('krentz', 1), ('saltless', 1), ('ulterior', 1), ('masterwork', 1), ('indictments', 1), ('eli', 1), ('millionsmarchsf', 1), ('voltage', 1), ('trumpland', 1), ('victories', 1), ('friendshipgoals', 1), ('storylines', 1), ('crete', 1), ('psylandorian', 1), ('bookworm', 1), ('shareholdaz', 1), ('ghostwriters', 1), ('blob', 1), ('satyajit', 1), ('horsepower', 1), ('bathtub', 1), ('cutoff', 1), ('gladys', 1), ('principle', 1), ('renewables', 1), ('wh', 1), ('bourdain', 1), ('breathalyzer', 1), ('leviathan', 1), ('sonar', 1), ('seatbacks', 1), ('hentai', 1), ('starnes', 1), ('subvert', 1), ('urkel', 1), ('foreheads', 1), ('rappers', 1), ('waithe', 1), ('shriver', 1), ('fark', 1), ('gulag', 1), ('siberia', 1), ('attire', 1), ('ogre', 1), ('imaginable', 1), ('mechanism', 1), ('frills', 1), ('pomp', 1), ('chillingly', 1), ('reappear', 1), ('tort', 1), ('hasty', 1), ('overthink', 1), ('mia', 2), ('launchers', 1), ('broderick', 1), ('wonderfully', 1), ('harrington', 1), ('proposition', 2), ('wolfman', 1), ('diphtheria', 1), ('shylock', 1), ('shyster', 1), ('stereotypical', 1), ('pizzeria', 1), ('couscous', 1), ('retail', 1), ('bueller', 1), ('litterer', 1), ('expedite', 1), ('interrogations', 1), ('epipen', 1), ('swag', 1), ('rainstorms', 1), ('pummel', 1), ('shitshow', 1), ('windowsill', 1), ('millenial', 1), ('immunization', 1), ('jarrel', 1), ('extroverts', 1), ('inoperable', 1), ('albinism', 1), ('zhang', 1), ('ziyi', 1), ('nullify', 1), ('footlong', 1), ('teriyaki', 1), ('convulse', 1), ('mailman', 1), ('unreasonable', 1), ('spittle', 1), ('sexton', 1), ('deutsch', 1), ('croak', 1), ('persecution', 1), ('reassign', 1), ('underpublicized', 1), ('intestinal', 1), ('mole', 1), ('mallets', 1), ('sprinkle', 1), ('yarn', 1), ('maxim', 1), ('dent', 1), ('tuxedoed', 1), ('feingold', 1), ('cameos', 1), ('nsync', 1), ('soundandfury', 1), ('wordpress', 1), ('worrisome', 1), ('usage', 1), ('incessant', 1), ('oversharing', 1), ('mademoiselle', 1), ('tummy', 1), ('demonstration', 1), ('rendezvous', 1), ('als', 1), ('zell', 1), ('kinder', 1), ('marley', 1), ('mayim', 1), ('bialik', 1), ('kellen', 1), ('segregation', 1), ('chests', 1), ('som', 1), ('horowitz', 1), ('biv', 1), ('devoe', 1), ('grabbies', 1), ('jameela', 1), ('jamil', 1), ('insinuate', 1), ('digger', 1), ('southpaw', 1), ('soundtrack', 1), ('renegotiation', 1), ('wiser', 1), ('pore', 1), ('shopkeeper', 1), ('memorize', 1), ('maga', 1), ('bugaboo', 1), ('merck', 1), ('philosophical', 1), ('emeritus', 1), ('canonizations', 1), ('nikolai', 1), ('rimsky', 1), ('korsakov', 1), ('inventive', 1), ('orchestrator', 1), ('caitlin', 1), ('enclosures', 1), ('miscellaneous', 1), ('asmr', 1), ('espresso', 1), ('middleagedschmovies', 1), ('accessibility', 1), ('euphoric', 1), ('postcard', 1), ('meenakshi', 1), ('amman', 1), ('retool', 1), ('tasteless', 1), ('restraint', 1), ('outbreeding', 1), ('intelligentsia', 1), ('hillshire', 1), ('bratwurst', 1), ('frock', 1), ('underrate', 1), ('moles', 1), ('deadlines', 1), ('strzok', 1), ('pissy', 1), ('gaby', 1), ('hoffmann', 1), ('wasters', 1), ('troublemakers', 1), ('noam', 1), ('chomsky', 1), ('panera', 1), ('plausible', 1), ('deniability', 1), ('swedes', 1), ('penetration', 1), ('preamble', 1), ('derangement', 1), ('chillax', 1), ('gnar', 2), ('myrtle', 1), ('ancestral', 1), ('prowl', 1), ('enda', 1), ('gopers', 1), ('coogler', 1), ('wakanda', 1), ('mcmaster', 1), ('alignment', 1), ('variables', 1), ('sunblock', 1), ('botox', 1), ('instinct', 1), ('ideological', 1), ('stressfest', 1), ('krypton', 1), ('nana', 2), ('assignment', 1), ('mirren', 1), ('infatuate', 1), ('oversimplify', 1), ('insecticide', 1), ('sufficiently', 1), ('sweepstakes', 1), ('megadonor', 1), ('transaction', 1), ('klutz', 1), ('ndchen', 1), ('italia', 1), ('panoramic', 1), ('saunders', 1), ('retweets', 2), ('phalanx', 1), ('hungrily', 1), ('interface', 1), ('ignatians', 1), ('penetrate', 1), ('databases', 1), ('droege', 1), ('slosh', 1), ('albarn', 1), ('denmark', 1), ('freshmen', 1), ('safran', 1), ('foer', 1), ('bidder', 1), ('zenith', 1), ('gamespace', 1), ('dopec', 1), ('spicey', 1), ('sla', 1), ('redd', 1), ('ethicists', 1), ('farage', 1), ('willam', 1), ('hallucinate', 1), ('stragglers', 1), ('padres', 1), ('earthquakes', 1), ('vacationer', 1), ('omniscient', 1), ('yngwie', 1), ('malmsteen', 1), ('giuliana', 1), ('rancic', 1), ('connell', 1), ('dearly', 1), ('ventriloquist', 1), ('azealia', 1), ('intruder', 1), ('unshakeable', 1), ('bassnectar', 1), ('disinvest', 1), ('preschoolers', 1), ('endlessly', 1), ('leotard', 1), ('choreograph', 1), ('multidisciplinary', 1), ('rightful', 1), ('udc', 1), ('lifeblood', 1), ('globetrotters', 1), ('firecracker', 1), ('puzo', 1), ('mcgovern', 1), ('perkins', 1), ('caine', 1), ('aiello', 1), ('shalhoub', 1), ('braindead', 1), ('fivethirtyeight', 1), ('aggregator', 1), ('templeton', 1), ('doubletree', 1), ('mechanical', 1), ('fervor', 1), ('capitalists', 1), ('breakdowns', 2), ('connery', 1), ('creepiest', 1), ('maven', 1), ('craggy', 1), ('ogres', 1), ('gaulle', 1), ('pompom', 1), ('emile', 1), ('hirsch', 1), ('errant', 1), ('keystroke', 1), ('apocalypto', 1), ('baio', 1), ('relentlessly', 1), ('tarot', 1), ('khaled', 1), ('shinto', 1), ('priestess', 1), ('homepod', 1), ('cutlet', 1), ('munchos', 1), ('disodium', 1), ('guanylate', 1), ('tankers', 1), ('safire', 1), ('whoppers', 1), ('definitions', 1), ('mcdreamy', 1), ('que', 1), ('vivan', 1), ('theda', 1), ('hammel', 1), ('lyudska', 1), ('podoba', 1), ('sexualities', 1), ('ee', 1), ('ppm', 1), ('unrewarded', 1), ('paz', 1), ('airliners', 1), ('salve', 1), ('chap', 1), ('sittin', 1), ('liberian', 1), ('dignitary', 1), ('roscoe', 1), ('xfl', 1), ('genitalia', 1), ('themeless', 1), ('hooligans', 1), ('shapewear', 1), ('hitchhiker', 1), ('irregular', 1), ('allowable', 1), ('amperage', 1), ('testicles', 1), ('attractiveness', 1), ('romanian', 1), ('grift', 1), ('mcveigh', 1), ('cecil', 1), ('illegalize', 1), ('trumpacandy', 1), ('gloriously', 1), ('brainer', 1), ('lookers', 1), ('passers', 1), ('vale', 1), ('boothe', 1), ('thones', 1), ('adelanto', 1), ('chixx', 1), ('floodgates', 1), ('tequila', 1), ('mediaeval', 1), ('fortress', 1), ('monemvasia', 1), ('inspo', 1), ('courtesy', 2), ('trivial', 1), ('redskins', 1), ('redstate', 1), ('leon', 1), ('erick', 2), ('erickson', 2), ('cary', 1), ('elwes', 1), ('biggie', 1), ('felonies', 1), ('gram', 2), ('mariachi', 1), ('fattest', 1), ('spangle', 1), ('doorstops', 1), ('doorblocker', 1), ('annulment', 1), ('goper', 1), ('broccoli', 1), ('duetting', 1), ('woodworking', 1), ('carhartt', 1), ('thong', 1), ('magnanimous', 1), ('relish', 1), ('sinead', 1), ('herbie', 1), ('anthropomorphologists', 1), ('jenni', 1), ('konner', 1), ('hq', 1), ('arkansans', 1), ('rinkins', 1), ('harsher', 1), ('verdugo', 1), ('creatives', 1), ('transvestite', 1), ('dakotan', 1), ('quantitative', 1), ('gail', 1), ('saltz', 1), ('trexit', 1), ('sustenance', 1), ('feijoada', 1), ('methushael', 1), ('lamech', 1), ('petticoats', 1), ('anteater', 1), ('suicides', 1), ('lipnicki', 1), ('spaceballs', 1), ('continents', 1), ('calculus', 1), ('watermelons', 1), ('austen', 1), ('puig', 1), ('deductible', 1), ('felipe', 1), ('smack', 1), ('distributor', 1), ('unchecked', 1), ('industrialization', 1), ('neanderthal', 1), ('bloodlust', 1), ('flynt', 1), ('presex', 1), ('girders', 1), ('geekier', 1), ('dominos', 1), ('koran', 1), ('butternut', 1), ('majesty', 1), ('walkers', 1), ('pushier', 1), ('rollerball', 1), ('slime', 1), ('cocoon', 1), ('ooze', 1), ('chaka', 1), ('meara', 1), ('maitre', 1), ('everlast', 1), ('clarksburg', 1), ('blotter', 1), ('raiser', 1), ('baftas', 1), ('fanciful', 1), ('rentboys', 1), ('rentboy', 1), ('gremlin', 1), ('rhinoceros', 1), ('birkenstocks', 1), ('surmise', 1), ('heartache', 1), ('tca', 1), ('mercator', 1), ('lovelorn', 1), ('newswoman', 1), ('vibrant', 1), ('bernanke', 1), ('grooviest', 1), ('spectators', 1), ('bluefish', 1), ('saor', 1), ('venetian', 1), ('pok', 1), ('polack', 1), ('rosh', 1), ('hashasha', 1)])
6.Create features and labels [3 Marks]
X = tokenizer.texts_to_sequences(sarc_data['final_headline'])
X = pad_sequences(X, maxlen = maxlen)
y = np.asarray(sarc_data['is_sarcastic'])
print(f'Number of Samples: {len(X)}')
print(f'Number of Labels: {len(y)}')
print(f'\nFirst headline:\n{X[0]}\n\nLabel of the first headline: {y[0]}')
Number of Samples: 28619
Number of Labels: 28619
First headline:
[ 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 325 250 5221 1881 619 1074]
Label of the first headline: 1
Comments:
The final headline is the feature and labels are the is_sarcastic feature
7.Get vocabulary size [3 Marks]
# Reserve padding (indexed zero)
w2i = tokenizer.word_index
vocab_size = len(w2i) + 1
print(f'Number of unique tokens: {vocab_size}')
Number of unique tokens: 20922
8.Create a weight matrix using GloVe embeddings [3 Marks]
import os
from gensim.test.utils import datapath, get_tmpfile
from gensim.models import KeyedVectors #
path=os.getcwd()+"//"
#glove_file = datapath(path + 'glove.6B.50d.txt') # This is a GloVe model
EMBEDDING_FILE = datapath(path + 'glove.6B.200d.txt')
embeddings = {}
#for o in open(EMBEDDING_FILE,errors="ignore"):
for o in open(EMBEDDING_FILE, encoding="utf8"):
word = o.split(' ')[0]
embd = o.split(' ')[1:]
embd = np.asarray(embd, dtype = 'float32')
embeddings[word] = embd
len(embeddings)
400000
# Getting the minimum number of words
num_words = min(max_features, vocab_size) + 1
embedding_matrix = np.zeros((num_words, embedding_size))
for word, i in tokenizer.word_index.items():
if i > max_features: continue
embedding_vector = embeddings.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
len(embeddings.values())
400000
9. Define and compile a Bidirectional LSTM model. [3 Marks]
from tensorflow.keras.initializers import Constant
# Models
from tensorflow.keras.layers import Dense, LSTM, Embedding, Dropout, Flatten, Bidirectional, GlobalMaxPool1D
from tensorflow.keras.callbacks import EarlyStopping, ModelCheckpoint, ReduceLROnPlateau, TensorBoard
from tensorflow.keras.preprocessing.sequence import pad_sequences
from tensorflow.keras.preprocessing.text import Tokenizer
from tensorflow.keras.models import Model, Sequential
Bi-Directional Long Short Term Memory Bidirectional long-short term memory (Bi-LSTM) is the process of making any neural network o have the sequence information in both directions backwards (future to past) or forward (past to future).
In bidirectional, our input flows in two directions, making a Bi-LSTM different from the regular LSTM. With the regular LSTM, we can make input flow in one direction, either backwards or forward. However, in bidirectional, we can make the input flow in both directions to preserve the future and the past information. For a better explanation, let’s have an example.
In the sentence "boys go to…" we can not fill the blank space. Still, when we have a future sentence “boys come out of school”, we can easily predict the past blank space the similar thing we want to perform by our model and bidirectional LSTM allows the neural network to perform this.
model = Sequential()
model.add(Embedding(num_words, embedding_size, embeddings_initializer = Constant(embedding_matrix), input_length = maxlen, trainable = False))
model.add(Bidirectional(LSTM(128, return_sequences = True)))
model.add(GlobalMaxPool1D())
model.add(Dropout(0.5, input_shape = (256,)))
model.add(Dense(128, activation = 'relu'))
model.add(Dropout(0.5, input_shape = (128,)))
model.add(Dense(64, activation = 'relu'))
model.add(Dropout(0.5, input_shape = (64,)))
model.add(Dense(1, activation = 'sigmoid'))
model.compile(loss = 'binary_crossentropy', optimizer = 'adam', metrics = ['accuracy'])
# Adding callbacks
es = EarlyStopping(monitor = 'val_loss', mode = 'min', verbose = 1, patience = 10)
mc = ModelCheckpoint('sarcasm_detector.h5', monitor = 'val_loss', mode = 'min', save_best_only = True, verbose = 1)
lr_r = ReduceLROnPlateau(monitor = 'val_loss', factor = 0.1, patience = 5),
logdir = 'log'; tb = TensorBoard(logdir, histogram_freq = 1)
callbacks = [es, mc, lr_r, tb]
print(model.summary())
Model: "sequential_5"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
embedding_3 (Embedding) (None, 107, 200) 2000200
bidirectional (Bidirectiona (None, 107, 256) 336896
l)
global_max_pooling1d (Globa (None, 256) 0
lMaxPooling1D)
dropout_1 (Dropout) (None, 256) 0
dense_4 (Dense) (None, 128) 32896
dropout_2 (Dropout) (None, 128) 0
dense_5 (Dense) (None, 64) 8256
dropout_3 (Dropout) (None, 64) 0
dense_6 (Dense) (None, 1) 65
=================================================================
Total params: 2,378,313
Trainable params: 378,113
Non-trainable params: 2,000,200
_________________________________________________________________
None
x_train, x_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = random_state, shuffle = True)
print('---'*20, f'\nNumber of rows in training dataset: {x_train.shape[0]}')
print(f'Number of columns in training dataset: {x_train.shape[1]}')
print(f'Number of unique words in training dataset: {len(np.unique(np.hstack(x_train)))}')
print('---'*20, f'\nNumber of rows in test dataset: {x_test.shape[0]}')
print(f'Number of columns in test dataset: {x_test.shape[1]}')
print(f'Number of unique words in test dataset: {len(np.unique(np.hstack(x_test)))}')
------------------------------------------------------------ Number of rows in training dataset: 22895 Number of columns in training dataset: 107 Number of unique words in training dataset: 9936 ------------------------------------------------------------ Number of rows in test dataset: 5724 Number of columns in test dataset: 107 Number of unique words in test dataset: 7185
batch_size = 100
epochs = 10
h = model.fit(x_train, y_train, epochs = epochs, validation_split = 0.2, batch_size = batch_size, verbose = 2, callbacks = callbacks)
Epoch 1/10 Epoch 1: val_loss improved from inf to 0.53797, saving model to sarcasm_detector.h5 184/184 - 95s - loss: 0.6299 - accuracy: 0.6368 - val_loss: 0.5380 - val_accuracy: 0.7366 - lr: 0.0010 - 95s/epoch - 514ms/step Epoch 2/10 Epoch 2: val_loss improved from 0.53797 to 0.49839, saving model to sarcasm_detector.h5 184/184 - 99s - loss: 0.5326 - accuracy: 0.7359 - val_loss: 0.4984 - val_accuracy: 0.7580 - lr: 0.0010 - 99s/epoch - 537ms/step Epoch 3/10 Epoch 3: val_loss improved from 0.49839 to 0.46222, saving model to sarcasm_detector.h5 184/184 - 99s - loss: 0.4725 - accuracy: 0.7779 - val_loss: 0.4622 - val_accuracy: 0.7849 - lr: 0.0010 - 99s/epoch - 539ms/step Epoch 4/10 Epoch 4: val_loss improved from 0.46222 to 0.44600, saving model to sarcasm_detector.h5 184/184 - 100s - loss: 0.4336 - accuracy: 0.8004 - val_loss: 0.4460 - val_accuracy: 0.7893 - lr: 0.0010 - 100s/epoch - 546ms/step Epoch 5/10 Epoch 5: val_loss improved from 0.44600 to 0.43728, saving model to sarcasm_detector.h5 184/184 - 99s - loss: 0.3928 - accuracy: 0.8232 - val_loss: 0.4373 - val_accuracy: 0.7984 - lr: 0.0010 - 99s/epoch - 538ms/step Epoch 6/10 Epoch 6: val_loss did not improve from 0.43728 184/184 - 99s - loss: 0.3533 - accuracy: 0.8446 - val_loss: 0.4609 - val_accuracy: 0.7995 - lr: 0.0010 - 99s/epoch - 539ms/step Epoch 7/10 Epoch 7: val_loss did not improve from 0.43728 184/184 - 105s - loss: 0.3253 - accuracy: 0.8586 - val_loss: 0.4533 - val_accuracy: 0.7903 - lr: 0.0010 - 105s/epoch - 571ms/step Epoch 8/10 Epoch 8: val_loss did not improve from 0.43728 184/184 - 104s - loss: 0.2993 - accuracy: 0.8701 - val_loss: 0.4523 - val_accuracy: 0.8030 - lr: 0.0010 - 104s/epoch - 566ms/step Epoch 9/10 Epoch 9: val_loss did not improve from 0.43728 184/184 - 98s - loss: 0.2690 - accuracy: 0.8874 - val_loss: 0.5320 - val_accuracy: 0.7965 - lr: 0.0010 - 98s/epoch - 533ms/step Epoch 10/10 Epoch 10: val_loss did not improve from 0.43728 184/184 - 98s - loss: 0.2437 - accuracy: 0.8984 - val_loss: 0.4735 - val_accuracy: 0.8041 - lr: 0.0010 - 98s/epoch - 532ms/step
plot_accuracy_loss(h)
# Evaluate the model
loss, accuracy = model.evaluate(x_test, y_test, verbose = 0)
print('Overall Accuracy: {}'.format(round(accuracy * 100, 0)))
Overall Accuracy: 81.0
y_pred = (model.predict(x_test) > 0.5).astype('int32')
print(f'Classification Report:\n{classification_report(y_pred, y_test)}')
Classification Report:
precision recall f1-score support
0 0.86 0.79 0.82 3232
1 0.76 0.83 0.79 2492
accuracy 0.81 5724
macro avg 0.81 0.81 0.81 5724
weighted avg 0.81 0.81 0.81 5724
print('--'*30); print('Confusion Matrix')
cm = confusion_matrix(y_test, y_pred)
cm = pd.DataFrame(cm , index = ['Non-sarcastic', 'Sarcastic'] , columns = ['Non-sarcastic','Sarcastic'])
display(cm); print('--'*30)
plt.figure(figsize = (8, 5))
_ = sns.heatmap(cm, cmap= 'Blues', linecolor = 'black' , linewidth = 1 , annot = True,
fmt = '' , xticklabels = ['Non-sarcastic', 'Sarcastic'],
yticklabels = ['Non-sarcastic', 'Sarcastic']).set_title('Confusion Matrix')
------------------------------------------------------------ Confusion Matrix
| Non-sarcastic | Sarcastic | |
|---|---|---|
| Non-sarcastic | 2564 | 431 |
| Sarcastic | 668 | 2061 |
------------------------------------------------------------
Conclusion: